Reformat catalog-be
[sdc.git] / catalog-be / src / main / java / org / openecomp / sdc / be / tosca / model / ToscaGroupTemplate.java
index 605d41e..c7763e6 100644 (file)
@@ -7,9 +7,9 @@
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * You may obtain a copy of the License at
- * 
+ *
  *      http://www.apache.org/licenses/LICENSE-2.0
- * 
+ *
  * Unless required by applicable law or agreed to in writing, software
  * distributed under the License is distributed on an "AS IS" BASIS,
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * limitations under the License.
  * ============LICENSE_END=========================================================
  */
-
 package org.openecomp.sdc.be.tosca.model;
 
 import java.util.List;
 import java.util.Map;
 
 public class ToscaGroupTemplate {
+
     private String type;
     private List<String> members;
     private IToscaMetadata metadata;
     private Map<String, Object> properties;
     private Map<String, ToscaTemplateCapability> capabilities;
-    
-    public ToscaGroupTemplate(String type, List<String> members, IToscaMetadata metadata, Map<String, Object> properties, Map<String, ToscaTemplateCapability> capabilities) {
-               this.type = type;
-               this.members = members;
-               this.metadata = metadata;
-               this.properties = properties;
-               this.capabilities = capabilities;
-       }
-    
+
+    public ToscaGroupTemplate(String type, List<String> members, IToscaMetadata metadata, Map<String, Object> properties,
+                              Map<String, ToscaTemplateCapability> capabilities) {
+        this.type = type;
+        this.members = members;
+        this.metadata = metadata;
+        this.properties = properties;
+        this.capabilities = capabilities;
+    }
+
     public ToscaGroupTemplate(String type, IToscaMetadata metadata, Map<String, Object> properties) {
-               this.type = type;
-               this.metadata = metadata;
-               this.properties = properties;
-       }
-    
-    
+        this.type = type;
+        this.metadata = metadata;
+        this.properties = properties;
+    }
 
-       public String getType() {
+    public String getType() {
         return type;
     }
 
@@ -77,13 +76,12 @@ public class ToscaGroupTemplate {
     public void setProperties(Map<String, Object> properties) {
         this.properties = properties;
     }
-    
-       public Map<String, ToscaTemplateCapability> getCapabilities() {
-               return capabilities;
-       }
 
-       public void setCapabilities(Map<String, ToscaTemplateCapability> capabilities) {
-               this.capabilities = capabilities;
-       }
+    public Map<String, ToscaTemplateCapability> getCapabilities() {
+        return capabilities;
+    }
 
+    public void setCapabilities(Map<String, ToscaTemplateCapability> capabilities) {
+        this.capabilities = capabilities;
+    }
 }