/*- * ============LICENSE_START======================================================= * SDC * ================================================================================ * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved. * ================================================================================ * 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. * See the License for the specific language governing permissions and * limitations under the License. * ============LICENSE_END========================================================= */ package org.openecomp.sdc.be.datatypes.elements; import org.openecomp.sdc.be.datatypes.components.ComponentMetadataDataDefinition; import java.util.ArrayList; import java.util.List; public class ProductMetadataDataDefinition extends ComponentMetadataDataDefinition { private String fullName; private List 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 getContacts() { return contacts; } public void setContacts(List 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; } }