tony-liu
Committed by Gerrit Code Review

ONOS-5270 Tunnel needs more specific states.

Change-Id: I18ddc67d55add27c970385a9048daff97f00d902
......@@ -92,7 +92,17 @@ public interface Tunnel extends Annotated, Provided, NetworkResource {
/**
* Signifies that the tunnel's state is unreliable and should be setup again.
*/
UNSTABLE
UNSTABLE,
/**
* Signifies that a tunnel is being established.
*/
ESTABLISHING,
/**
* Signifies that a tunnel is being removed.
*/
REMOVING
}
/**
......