aboutsummaryrefslogtreecommitdiffstats
path: root/jython-tosca-parser/src/main/java/org/openecomp/sdc/toscaparser/jython/JyEntityTemplate.java
blob: cdcb8a067f9464c68623c09f5e0833a749167301 (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.JyStatefulEntityType;

public interface JyEntityTemplate {
    
    String getJyName();
    String getJyDescription();
    JyStatefulEntityType getJyTypeDefinition();
    List<JyProperty> getJyProperties();
    List<JyCapability> getJyCapabilities();
    List<Map<String, Map<String, Object>>> getJyRequirements();
}