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

import java.util.List;
import java.util.Map;

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();
    Map<String, Object> getJyMetadata();
}