Committed by
Gerrit Code Review
[ONOS-3117] Changes on VtnRscEvent
Change-Id: Ibc0f8034e9034b2dd3e30b6ded03b3ced49b8e6d
Showing
1 changed file
with
49 additions
and
1 deletions
| ... | @@ -51,7 +51,55 @@ public class VtnRscEvent | ... | @@ -51,7 +51,55 @@ public class VtnRscEvent |
| 51 | /** | 51 | /** |
| 52 | * Signifies that router interface has remove. | 52 | * Signifies that router interface has remove. |
| 53 | */ | 53 | */ |
| 54 | - ROUTER_INTERFACE_DELETE | 54 | + ROUTER_INTERFACE_DELETE, |
| 55 | + /** | ||
| 56 | + * Signifies that port-pair has add. | ||
| 57 | + */ | ||
| 58 | + PORT_PAIR_PUT, | ||
| 59 | + /** | ||
| 60 | + * Signifies that port-pair has remove. | ||
| 61 | + */ | ||
| 62 | + PORT_PAIR_DELETE, | ||
| 63 | + /** | ||
| 64 | + * Signifies that port-pair has update. | ||
| 65 | + */ | ||
| 66 | + PORT_PAIR_UPDATE, | ||
| 67 | + /** | ||
| 68 | + * Signifies that port-pair-group has add. | ||
| 69 | + */ | ||
| 70 | + PORT_PAIR_GROUP_PUT, | ||
| 71 | + /** | ||
| 72 | + * Signifies that port-pair-group has remove. | ||
| 73 | + */ | ||
| 74 | + PORT_PAIR_GROUP_DELETE, | ||
| 75 | + /** | ||
| 76 | + * Signifies that port-pair-group has update. | ||
| 77 | + */ | ||
| 78 | + PORT_PAIR_GROUP_UPDATE, | ||
| 79 | + /** | ||
| 80 | + * Signifies that flow-classifier has add. | ||
| 81 | + */ | ||
| 82 | + FLOW_CLASSIFIER_PUT, | ||
| 83 | + /** | ||
| 84 | + * Signifies that flow-classifier has remove. | ||
| 85 | + */ | ||
| 86 | + FLOW_CLASSIFIER_DELETE, | ||
| 87 | + /** | ||
| 88 | + * Signifies that flow-classifier has update. | ||
| 89 | + */ | ||
| 90 | + FLOW_CLASSIFIER_UPDATE, | ||
| 91 | + /** | ||
| 92 | + * Signifies that port-chain has add. | ||
| 93 | + */ | ||
| 94 | + PORT_CHAIN_PUT, | ||
| 95 | + /** | ||
| 96 | + * Signifies that port-chain has remove. | ||
| 97 | + */ | ||
| 98 | + PORT_CHAIN_DELETE, | ||
| 99 | + /** | ||
| 100 | + * Signifies that port-chain has update. | ||
| 101 | + */ | ||
| 102 | + PORT_CHAIN_UPDATE | ||
| 55 | } | 103 | } |
| 56 | 104 | ||
| 57 | /** | 105 | /** | ... | ... |
-
Please register or login to post a comment