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

import java.util.List;

public interface JyToscaTemplate {
    
    String getJyVersion();
    String getJyDescription();
    List<JyNodeTemplate> getJyNodeTemplates();
    JyTopologyTemplate getJyTopologyTemplate();
}