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

public interface JyProperty {
    
    String getJyName();
    Object getJyValue();
    String getJyValueClassName();
    String getJyType();
    boolean isJyRequired();
    String getJyDescription();
}