Sync Integ to Master
[sdc.git] / catalog-model / src / main / java / org / openecomp / sdc / be / model / PolicyTypeDefinition.java
index 9b3e72c..0cfdf19 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.
 
 package org.openecomp.sdc.be.model;
 
-import java.util.List;
-
 import org.openecomp.sdc.be.datatypes.elements.PolicyTypeDataDefinition;
 
+import java.util.List;
+
 /**
  * Specifies the policy type that the Node Type exposes.
  */
 public class PolicyTypeDefinition extends PolicyTypeDataDefinition {
 
-       private List<PropertyDefinition> properties;
-
-       public List<PropertyDefinition> getProperties() {
-               return properties;
-       }
+    private List<PropertyDefinition> properties;
 
-       public void setProperties(List<PropertyDefinition> properties) {
-               this.properties = properties;
-       }
+    public List<PropertyDefinition> getProperties() {
+        return properties;
+    }
 
-       public PolicyTypeDefinition() {
-               super();
-       }
+    public void setProperties(List<PropertyDefinition> properties) {
+        this.properties = properties;
+    }
 
-       public PolicyTypeDefinition(PolicyTypeDataDefinition p) {
-               super(p);
-       }
+    public PolicyTypeDefinition() {
+        super();
+    }
 
-       @Override
-       public String toString() {
-               return super.toString() + " [ properties=" + properties + " ]";
-       }
+    public PolicyTypeDefinition(PolicyTypeDataDefinition p) {
+        super(p);
+    }
 
+    @Override
+    public String toString() {
+        return super.toString() + " [ properties=" + properties + " ]";
+    }
 }