Committed by
Gerrit Code Review
ONOS-5270 Tunnel needs more specific states.
Change-Id: I18ddc67d55add27c970385a9048daff97f00d902
Showing
1 changed file
with
11 additions
and
1 deletions
... | @@ -92,7 +92,17 @@ public interface Tunnel extends Annotated, Provided, NetworkResource { | ... | @@ -92,7 +92,17 @@ public interface Tunnel extends Annotated, Provided, NetworkResource { |
92 | /** | 92 | /** |
93 | * Signifies that the tunnel's state is unreliable and should be setup again. | 93 | * Signifies that the tunnel's state is unreliable and should be setup again. |
94 | */ | 94 | */ |
95 | - UNSTABLE | 95 | + UNSTABLE, |
96 | + | ||
97 | + /** | ||
98 | + * Signifies that a tunnel is being established. | ||
99 | + */ | ||
100 | + ESTABLISHING, | ||
101 | + | ||
102 | + /** | ||
103 | + * Signifies that a tunnel is being removed. | ||
104 | + */ | ||
105 | + REMOVING | ||
96 | } | 106 | } |
97 | 107 | ||
98 | /** | 108 | /** | ... | ... |
-
Please register or login to post a comment