implement dependency checking for security rule's group
[neutron.git] / neutron-spi / src / main / java / org / opendaylight / neutron / spi / INeutronCRUD.java
index e41642925d4210d199a5b6bb20046faea06aed44..db67d97947675b56b46b5bc822f37332662d29d4 100644 (file)
@@ -75,6 +75,6 @@ public interface INeutronCRUD<T extends INeutronObject<T>> {
     boolean update(String uuid, T delta);
 
     // TODO The Exception Result should eventually be replaced by propagating exceptions, and removed
-    enum Result { Success, AlreadyExists, Exception }
+    enum Result { Success, AlreadyExists, DependencyMissing, Exception }
 
 }