aboutsummaryrefslogtreecommitdiffstats
path: root/jython-tosca-parser/src/main/java/org/openecomp/sdc/toscaparser/jython/JyProperty.java
diff options
context:
space:
mode:
Diffstat (limited to 'jython-tosca-parser/src/main/java/org/openecomp/sdc/toscaparser/jython/JyProperty.java')
-rw-r--r--jython-tosca-parser/src/main/java/org/openecomp/sdc/toscaparser/jython/JyProperty.java11
1 files changed, 11 insertions, 0 deletions
diff --git a/jython-tosca-parser/src/main/java/org/openecomp/sdc/toscaparser/jython/JyProperty.java b/jython-tosca-parser/src/main/java/org/openecomp/sdc/toscaparser/jython/JyProperty.java
new file mode 100644
index 0000000..4c33b92
--- /dev/null
+++ b/jython-tosca-parser/src/main/java/org/openecomp/sdc/toscaparser/jython/JyProperty.java
@@ -0,0 +1,11 @@
+package org.openecomp.sdc.toscaparser.jython;
+
+public interface JyProperty {
+
+ String getJyName();
+ Object getJyValue();
+ String getJyValueClassName();
+ String getJyType();
+ boolean isJyRequired();
+ String getJyDescription();
+}