re base code
[sdc.git] / catalog-model / src / main / java / org / openecomp / sdc / be / model / jsontitan / enums / JsonConstantKeysEnum.java
index 0a10a3a..2a4496e 100644 (file)
 package org.openecomp.sdc.be.model.jsontitan.enums;
 
 public enum JsonConstantKeysEnum {
-       
-       COMPOSITION("composition"),
-       CAPABILITIES("capabilities"),
-       REQUIREMENTS("requirements"),
-       PROPERTIES("properties"),
-       INPUTS("inputs"),
-       GROUPS("groups"),
-       INSTANCE_PROPERIES("instanceProperties");
-       
-       private String value;
-       
-       private JsonConstantKeysEnum(String value) {
-               this.value = value;
-       }
-       
-       public String getValue() {
-               return value;
-       }
+
+    COMPOSITION("composition"),
+    CAPABILITIES("capabilities"),
+    REQUIREMENTS("requirements"),
+    PROPERTIES("properties"),
+    INPUTS("inputs"),
+    GROUPS("groups"),
+    INSTANCE_PROPERIES("instanceProperties");
+
+    private String value;
+
+    private JsonConstantKeysEnum(String value) {
+        this.value = value;
+    }
+
+    public String getValue() {
+        return value;
+    }
 }