aboutsummaryrefslogtreecommitdiffstats
path: root/jython-tosca-parser/src/main/java/org/openecomp/sdc/toscaparser/jython/JyTopologyTemplate.java
blob: c6fe0530662d76a93e06f3226c4a610f3a7dfd92 (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.parameters.JyInput;

public interface JyTopologyTemplate {
    
    String getJyDescription();    
    List<JyNodeTemplate> getJyNodeTemplates();
    List<JyInput> getJyInputs();
    List<JyGroup> getJyGroups();
    JySubstitutionMappings getJySubstitutionMappings();
}