aboutsummaryrefslogtreecommitdiffstats
path: root/jython-tosca-parser/src/main/java/org/openecomp/sdc/toscaparser/jython/parameters/JyInput.java
blob: 253805bbec70b40c62ffc671dc82f36aa5d395d2 (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();
    String getJyDefault();
    boolean isJyRequired();
    String getJyDescription();
}