commit | 684b2b85e3aa0a43e466fce45edace68121bf9d5 | [log] [tgz] |
---|---|---|
author | tony-liu <tony.liu.wh@gmail.com> | Tue Sep 20 16:19:30 2016 +0800 |
committer | Gerrit Code Review <gerrit@onlab.us> | Wed Sep 21 00:27:51 2016 +0000 |
tree | 2fadc8759fd01b535c9350dfa07f4c40ac0629de | |
parent | f2b9d031029396b383bd2af93c57d58904835f87 [diff] |
ONOS-5270 Tunnel needs more specific states. Change-Id: I18ddc67d55add27c970385a9048daff97f00d902
diff --git a/incubator/api/src/main/java/org/onosproject/incubator/net/tunnel/Tunnel.java b/incubator/api/src/main/java/org/onosproject/incubator/net/tunnel/Tunnel.java index ae9d92f..3f6572f 100644 --- a/incubator/api/src/main/java/org/onosproject/incubator/net/tunnel/Tunnel.java +++ b/incubator/api/src/main/java/org/onosproject/incubator/net/tunnel/Tunnel.java
@@ -92,7 +92,17 @@ /** * 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 } /**