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

public interface JyInput {
    
    String getJyName();
    String getJyType();
    Object getJyDefault();
    boolean isJyRequired();
    String getJyDescription();
}