Reformat common-be
[sdc.git] / common-be / src / main / java / org / openecomp / sdc / be / utils / TypeUtils.java
index 7535fbd..be6a8c2 100644 (file)
@@ -43,6 +43,7 @@ public class TypeUtils {
     @Getter
     @AllArgsConstructor
     public enum ToscaTagNamesEnum {
+        // @formatter:off
         DERIVED_FROM("derived_from"), IS_PASSWORD("is_password"),
         // Properties
         PROPERTIES("properties"), TYPE("type"), STATUS("status"),
@@ -63,7 +64,8 @@ public class TypeUtils {
         // Heat env Validation
         PARAMETERS("parameters"),
         // Import Validations
-        TOSCA_VERSION("tosca_definitions_version"), TOPOLOGY_TEMPLATE("topology_template"), OCCURRENCES("occurrences"), NODE_TEMPLATES("node_templates"), GROUPS("groups"), INPUTS("inputs"),
+        TOSCA_VERSION("tosca_definitions_version"), TOPOLOGY_TEMPLATE("topology_template"), OCCURRENCES("occurrences"), NODE_TEMPLATES(
+            "node_templates"), GROUPS("groups"), INPUTS("inputs"),
         SUBSTITUTION_MAPPINGS("substitution_mappings"), NODE_TYPE("node_type"), DIRECTIVES("directives"),
         // Attributes
         ATTRIBUTES("attributes"), LABEL("label"), HIDDEN("hidden"), IMMUTABLE("immutable"), ANNOTATIONS("annotations"),
@@ -76,6 +78,7 @@ public class TypeUtils {
         IMPLEMENTATION("implementation"),
 
         DERIVED_FROM_NAME("derivedFromName");
+        // @formatter:om
 
         private final String elementName;