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

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