Merge "[1707-OS] Updated license text according to the"
[sdc.git] / catalog-model / src / main / java / org / openecomp / sdc / be / model / jsontitan / enums / JsonConstantKeysEnum.java
1 package org.openecomp.sdc.be.model.jsontitan.enums;
2
3 public enum JsonConstantKeysEnum {
4         
5         COMPOSITION("composition"),
6         CAPABILITIES("capabilities"),
7         REQUIREMENTS("requirements"),
8         PROPERTIES("properties"),
9         INPUTS("inputs"),
10         GROUPS("groups"),
11         INSTANCE_PROPERIES("instanceProperties");
12         
13         private String value;
14         
15         private JsonConstantKeysEnum(String value) {
16                 this.value = value;
17         }
18         
19         public String getValue() {
20                 return value;
21         }
22 }