Sync Integ to Master
[sdc.git] / common-be / src / main / java / org / openecomp / sdc / be / datatypes / elements / PolicyTypeDataDefinition.java
index 8f73764..38cb4da 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.datatypes.elements;
 
+import org.openecomp.sdc.be.datatypes.tosca.ToscaDataDefinition;
+
 import java.io.Serializable;
 import java.util.List;
 import java.util.Map;
 
-import org.openecomp.sdc.be.datatypes.tosca.ToscaDataDefinition;
-
 public class PolicyTypeDataDefinition extends ToscaDataDefinition implements Serializable {
 
-       /**
-        * 
-        */
-       private static final long serialVersionUID = -3783390539788578388L;
+    /**
+     *
+     */
+    private static final long serialVersionUID = -3783390539788578388L;
 
-       private String uniqueId;
+    private String uniqueId;
 
-       private String type;
+    private String type;
 
-       private String version;
+    private String version;
 
-       private String derivedFrom;
+    private String derivedFrom;
 
-       private List<String> targets;
+    private List<String> targets;
 
-       private Map<String, String> metadata;
+    private Map<String, String> metadata;
 
-       private String description;
+    private String description;
 
-       /**
-        * Timestamp of data type creation
-        */
-       private Long creationTime;
+    /**
+     * Timestamp of data type creation
+     */
+    private Long creationTime;
 
-       /**
-        * Timestamp of the data type last update
-        */
-       private Long modificationTime;
+    /**
+     * Timestamp of the data type last update
+     */
+    private Long modificationTime;
 
-       private boolean highestVersion;
+    private boolean highestVersion;
 
-       public PolicyTypeDataDefinition() {
+    public PolicyTypeDataDefinition() {
 
-       }
+    }
 
-       public PolicyTypeDataDefinition(PolicyTypeDataDefinition p) {
-               this.uniqueId = p.uniqueId;
-               this.type = p.type;
-               this.version = p.version;
-               this.targets = p.targets;
-               this.metadata = p.metadata;
-               // this.derivedFromName = p.derivedFromName;
-               this.description = p.description;
-               this.creationTime = p.creationTime;
-               this.modificationTime = p.modificationTime;
-       }
+    public PolicyTypeDataDefinition(PolicyTypeDataDefinition p) {
+        this.uniqueId = p.uniqueId;
+        this.type = p.type;
+        this.version = p.version;
+        this.targets = p.targets;
+        this.metadata = p.metadata;
+        this.derivedFrom = p.derivedFrom;
+        this.description = p.description;
+        this.creationTime = p.creationTime;
+        this.modificationTime = p.modificationTime;
+        this.highestVersion = p.highestVersion;
+    }
 
-       public String getType() {
-               return type;
-       }
+    public String getType() {
+        return type;
+    }
 
-       public void setType(String type) {
-               this.type = type;
-       }
+    public void setType(String type) {
+        this.type = type;
+    }
 
-       public String getVersion() {
-               return version;
-       }
+    public String getVersion() {
+        return version;
+    }
 
-       public void setVersion(String version) {
-               this.version = version;
-       }
+    public void setVersion(String version) {
+        this.version = version;
+    }
 
-       public List<String> getTargets() {
-               return targets;
-       }
+    public List<String> getTargets() {
+        return targets;
+    }
 
-       public void setTargets(List<String> members) {
-               this.targets = members;
-       }
+    public void setTargets(List<String> members) {
+        this.targets = members;
+    }
 
-       public Map<String, String> getMetadata() {
-               return metadata;
-       }
+    public Map<String, String> getMetadata() {
+        return metadata;
+    }
 
-       public void setMetadata(Map<String, String> metadata) {
-               this.metadata = metadata;
-       }
+    public void setMetadata(Map<String, String> metadata) {
+        this.metadata = metadata;
+    }
 
-       public String getDescription() {
-               return description;
-       }
+    public String getDescription() {
+        return description;
+    }
 
-       public void setDescription(String description) {
-               this.description = description;
-       }
+    public void setDescription(String description) {
+        this.description = description;
+    }
 
-       public String getUniqueId() {
-               return uniqueId;
-       }
+    public String getUniqueId() {
+        return uniqueId;
+    }
 
-       public void setUniqueId(String uniqueId) {
-               this.uniqueId = uniqueId;
-       }
+    public void setUniqueId(String uniqueId) {
+        this.uniqueId = uniqueId;
+    }
 
-       public Long getCreationTime() {
-               return creationTime;
-       }
+    public Long getCreationTime() {
+        return creationTime;
+    }
 
-       public void setCreationTime(Long creationTime) {
-               this.creationTime = creationTime;
-       }
+    public void setCreationTime(Long creationTime) {
+        this.creationTime = creationTime;
+    }
 
-       public Long getModificationTime() {
-               return modificationTime;
-       }
+    public Long getModificationTime() {
+        return modificationTime;
+    }
 
-       public void setModificationTime(Long modificationTime) {
-               this.modificationTime = modificationTime;
-       }
+    public void setModificationTime(Long modificationTime) {
+        this.modificationTime = modificationTime;
+    }
 
-       @Override
-       public String toString() {
-               return "PolicyTypeDataDefinition [uniqueId=" + uniqueId + ", type=" + type + ", version=" + version
-                               + ", targets=" + targets + ", metadata=" + metadata + ", description=" + description + ", creationTime="
-                               + creationTime + ", modificationTime=" + modificationTime + "]";
-       }
-
-       public String getDerivedFrom() {
-               return derivedFrom;
-       }
-
-       public void setDerivedFrom(String derivedFrom) {
-               this.derivedFrom = derivedFrom;
-       }
-
-       public boolean isHighestVersion() {
-               return highestVersion;
-       }
-
-       public void setHighestVersion(boolean isLatestVersion) {
-               this.highestVersion = isLatestVersion;
-       }
+    @Override
+    public String toString() {
+        return "PolicyTypeDataDefinition [uniqueId=" + uniqueId + ", type=" + type + ", version=" + version
+                + ", targets=" + targets + ", metadata=" + metadata + ", description=" + description + ", creationTime="
+                + creationTime + ", modificationTime=" + modificationTime + "]";
+    }
+
+    public String getDerivedFrom() {
+        return derivedFrom;
+    }
+
+    public void setDerivedFrom(String derivedFrom) {
+        this.derivedFrom = derivedFrom;
+    }
+
+    public boolean isHighestVersion() {
+        return highestVersion;
+    }
+
+    public void setHighestVersion(boolean isLatestVersion) {
+        this.highestVersion = isLatestVersion;
+    }
 
 }