/*- * ============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.ui.model; import java.util.List; import java.util.Map; import org.openecomp.sdc.be.model.AdditionalInformationDefinition; import org.openecomp.sdc.be.model.InterfaceDefinition; import org.openecomp.sdc.be.model.PropertyDefinition; public class UiResourceDataTransfer extends UiComponentDataTransfer{ private UiResourceMetadata metadata; private List derivedFrom; private List derivedList; private List properties; private List attributes; private Map interfaces; private List defaultCapabilities; private List additionalInformation; public UiResourceDataTransfer(){} public List getAdditionalInformation() { return additionalInformation; } public void setAdditionalInformation(List additionalInformation) { this.additionalInformation = additionalInformation; } public UiResourceMetadata getMetadata() { return metadata; } public void setMetadata(UiResourceMetadata metadata) { this.metadata = metadata; } public List getDerivedFrom() { return derivedFrom; } public void setDerivedFrom(List derivedFrom) { this.derivedFrom = derivedFrom; } public List getDerivedList() { return derivedList; } public void setDerivedList(List derivedList) { this.derivedList = derivedList; } public List getProperties() { return properties; } public void setProperties(List properties) { this.properties = properties; } public List getAttributes() { return attributes; } public void setAttributes(List attributes) { this.attributes = attributes; } public Map getInterfaces() { return interfaces; } public void setInterfaces(Map interfaces) { this.interfaces = interfaces; } public List getDefaultCapabilities() { return defaultCapabilities; } public void setDefaultCapabilities(List defaultCapabilities) { this.defaultCapabilities = defaultCapabilities; } }