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