Avantika-Huawei
Committed by Gerrit Code Review

[ONOS-4170] Add a new tunnel state

Change-Id: I9ae331fbfb617c7cf1df2173074806336ae3bb9d
...@@ -87,7 +87,12 @@ public interface Tunnel extends Annotated, Provided, NetworkResource { ...@@ -87,7 +87,12 @@ public interface Tunnel extends Annotated, Provided, NetworkResource {
87 * Signifies that a tunnel is currently inactive. This state means that 87 * Signifies that a tunnel is currently inactive. This state means that
88 * this tunnel can not be borrowed by consumer. 88 * this tunnel can not be borrowed by consumer.
89 */ 89 */
90 - INACTIVE 90 + INACTIVE,
91 +
92 + /**
93 + * Signifies that the tunnel's state is unreliable and should be setup again.
94 + */
95 + UNSTABLE
91 } 96 }
92 97
93 /** 98 /**
......