EdgeRules throws descriptive error on invalid rule
[aai/aai-common.git] / aai-core / src / main / java / org / openecomp / aai / serialization / db / EdgeProperty.java
index 29461bc..21f0745 100644 (file)
 package org.openecomp.aai.serialization.db;
 
 public enum EdgeProperty {
+       FROM("from"),
+       TO("to"),
+       LABEL("label"),
+       DIRECTION("direction"),
+       MULTIPLICITY("multiplicity"),
        CONTAINS("contains-other-v"),
        DELETE_OTHER_V("delete-other-v"),
        SVC_INFRA("SVC-INFRA"),
        PREVENT_DELETE("prevent-delete");
+       
        private final String name;
 
        private EdgeProperty(String name) {