aboutsummaryrefslogtreecommitdiffstats
path: root/jython-tosca-parser/src/main/java/org/openecomp/sdc/toscaparser/jython/JySubstitutionMappings.java
blob: 1130e8ce91d525b418dbe01a112989b0eb6980cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package org.openecomp.sdc.toscaparser.jython;

import java.util.List;

import org.openecomp.sdc.toscaparser.jython.elements.JyNodeType;
import org.openecomp.sdc.toscaparser.jython.parameters.JyInput;

public interface JySubstitutionMappings {
    
    List<JyNodeTemplate> getJyNodeTemplates();
    List<JyInput> getJyInputs();
    List<JyGroup> getJyGroups();
    JyNodeType getJyNodeDefinition();
}