fixing warnings from checkstyle in common-be
[sdc.git] / common-be / src / main / java / org / openecomp / sdc / be / datatypes / elements / ProductMetadataDataDefinition.java
index 7c38eb5..97107db 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.
@@ -27,99 +27,108 @@ import java.util.List;
 
 public class ProductMetadataDataDefinition extends ComponentMetadataDataDefinition {
 
-       private String fullName;
-
-       private List<String> contacts;
-
-       private Boolean isActive;
-
-       public ProductMetadataDataDefinition() {
-               super();
-       }
-
-       public ProductMetadataDataDefinition(ProductMetadataDataDefinition other) {
-               super(other);
-       }
-
-       public Boolean getIsActive() {
-               return isActive;
-       }
-
-       public void setIsActive(Boolean active) {
-               isActive = active;
-       }
-
-       public List<String> getContacts() {
-               return contacts;
-       }
-
-       public void setContacts(List<String> contacts) {
-               this.contacts = contacts;
-       }
-
-       public void addContact(String contact) {
-               if (contact != null) {
-                       if (contacts == null) {
-                               contacts = new ArrayList<>();
-                       }
-                       contacts.add(contact);
-               }
-       }
-
-       public String getFullName() {
-               return fullName;
-       }
-
-       public void setFullName(String fullName) {
-               this.fullName = fullName;
-       }
-
-       @Override
-       public String toString() {
-               return "ProductMetadataDataDefinition [fullName=" + fullName + ", contacts=" + contacts + ", isActive="
-                               + isActive + "]";
-       }
-
-       @Override
-       public int hashCode() {
-               final int prime = 31;
-               int result = super.hashCode();
-
-               result = prime * result + ((contacts == null) ? 0 : contacts.hashCode());
-               result = prime * result + ((fullName == null) ? 0 : fullName.hashCode());
-               result = prime * result + ((isActive == null) ? 0 : isActive.hashCode());
-               return result;
-       }
-
-       @Override
-       public boolean equals(Object obj) {
-               if (this == obj)
-                       return true;
-               if (!super.equals(obj))
-                       return false;
-               if (getClass() != obj.getClass())
-                       return false;
-               ProductMetadataDataDefinition other = (ProductMetadataDataDefinition) obj;
-               if (contacts == null) {
-                       if (other.contacts != null)
-                               return false;
-               } else if (!contacts.equals(other.contacts))
-                       return false;
-               if (fullName == null) {
-                       if (other.fullName != null)
-                               return false;
-               } else if (!fullName.equals(other.fullName))
-                       return false;
-               if (isActive == null) {
-                       if (other.isActive != null)
-                               return false;
-               } else if (!isActive.equals(other.isActive))
-                       return false;
-               return super.equals(obj);
-       }
-
-       @Override
-       public String getActualComponentType() {
-               return getComponentType() != null ? getComponentType().getValue() : null;
-       }
+    private String fullName;
+
+    private List<String> contacts;
+
+    private Boolean isActive;
+
+    public ProductMetadataDataDefinition() {
+        super();
+    }
+
+    public ProductMetadataDataDefinition(ProductMetadataDataDefinition other) {
+        super(other);
+    }
+
+    public Boolean getIsActive() {
+        return isActive;
+    }
+
+    public void setIsActive(Boolean active) {
+        isActive = active;
+    }
+
+    public List<String> getContacts() {
+        return contacts;
+    }
+
+    public void setContacts(List<String> contacts) {
+        this.contacts = contacts;
+    }
+
+    public void addContact(String contact) {
+        if (contact != null) {
+            if (contacts == null) {
+                contacts = new ArrayList<>();
+            }
+            contacts.add(contact);
+        }
+    }
+
+    public String getFullName() {
+        return fullName;
+    }
+
+    public void setFullName(String fullName) {
+        this.fullName = fullName;
+    }
+
+    @Override
+    public String toString() {
+        return "ProductMetadataDataDefinition [fullName=" + fullName + ", contacts=" + contacts + ", isActive="
+                + isActive + "]";
+    }
+
+    @Override
+    public int hashCode() {
+        final int prime = 31;
+        int result = super.hashCode();
+
+        result = prime * result + ((contacts == null) ? 0 : contacts.hashCode());
+        result = prime * result + ((fullName == null) ? 0 : fullName.hashCode());
+        result = prime * result + ((isActive == null) ? 0 : isActive.hashCode());
+        return result;
+    }
+
+    @Override
+    public boolean equals(Object obj) {
+        if (this == obj) {
+            return true;
+        }
+        if (!super.equals(obj)) {
+            return false;
+        }
+        if (getClass() != obj.getClass()) {
+            return false;
+        }
+        ProductMetadataDataDefinition other = (ProductMetadataDataDefinition) obj;
+        if (contacts == null) {
+            if (other.contacts != null) {
+                return false;
+            }
+        } else if (!contacts.equals(other.contacts)) {
+            return false;
+        }
+        if (fullName == null) {
+            if (other.fullName != null) {
+                return false;
+            }
+        } else if (!fullName.equals(other.fullName)) {
+            return false;
+        }
+        if (isActive == null) {
+            if (other.isActive != null) {
+                return false;
+            }
+        } else if (!isActive.equals(other.isActive)) {
+            return false;
+        }
+        return super.equals(obj);
+    }
+
+    @Override
+    public String getActualComponentType() {
+        return getComponentType() != null ? getComponentType().getValue() : null;
+    }
 }