package org.openecomp.sdc.toscaparser.jython; import java.util.List; import org.openecomp.sdc.toscaparser.api.Metadata; import org.openecomp.sdc.toscaparser.jython.parameters.JyInput; public interface JyTopologyTemplate { String getJyDescription(); List getJyNodeTemplates(); List getJyInputs(); List getJyGroups(); JySubstitutionMappings getJySubstitutionMappings(); Metadata getJyMetadata(); }