/*- * ============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.model.jsontitan.datamodel; import java.util.List; import java.util.Map; import org.openecomp.sdc.be.datatypes.elements.InterfaceDataDefinition; import org.openecomp.sdc.be.datatypes.elements.ListCapabilityDataDefinition; import org.openecomp.sdc.be.datatypes.elements.ListRequirementDataDefinition; import org.openecomp.sdc.be.datatypes.elements.MapPropertiesDataDefinition; import org.openecomp.sdc.be.datatypes.elements.PropertyDataDefinition; public class NodeType extends ToscaElement{ public NodeType() { super(ToscaElementTypeEnum.NodeType); } private List derivedFrom; private List derivedList; private Map attributes; private Map capabilties; private Map capabiltiesProperties; private Map requirements; private Map interfaceArtifacts; // will be used in future // private Map> other; public List getDerivedList() { return derivedList; } public void setDerivedList(List derivedList) { this.derivedList = derivedList; } public List getDerivedFrom() { return derivedFrom; } public void setDerivedFrom(List derivedFrom) { this.derivedFrom = derivedFrom; } public Map getAttributes() { return attributes; } public void setAttributes(Map attributes) { this.attributes = attributes; } public Map getCapabilties() { return capabilties; } public void setCapabilties(Map capabilties) { this.capabilties = capabilties; } public Map getRequirements() { return requirements; } public void setRequirements(Map requirements) { this.requirements = requirements; } public Map getCapabiltiesProperties() { return capabiltiesProperties; } public void setCapabiltiesProperties(Map capabiltiesProperties) { this.capabiltiesProperties = capabiltiesProperties; } public Map getInterfaceArtifacts() { return interfaceArtifacts; } public void setInterfaceArtifacts(Map interfaceArtifacts) { this.interfaceArtifacts = interfaceArtifacts; } }