aboutsummaryrefslogtreecommitdiffstats
path: root/jython-tosca-parser/src/main/java/org/openecomp/sdc/toscaparser/api/Property.java
diff options
context:
space:
mode:
Diffstat (limited to 'jython-tosca-parser/src/main/java/org/openecomp/sdc/toscaparser/api/Property.java')
-rw-r--r--jython-tosca-parser/src/main/java/org/openecomp/sdc/toscaparser/api/Property.java48
1 files changed, 0 insertions, 48 deletions
diff --git a/jython-tosca-parser/src/main/java/org/openecomp/sdc/toscaparser/api/Property.java b/jython-tosca-parser/src/main/java/org/openecomp/sdc/toscaparser/api/Property.java
deleted file mode 100644
index c52efb6..0000000
--- a/jython-tosca-parser/src/main/java/org/openecomp/sdc/toscaparser/api/Property.java
+++ /dev/null
@@ -1,48 +0,0 @@
-package org.openecomp.sdc.toscaparser.api;
-
-import java.util.Objects;
-
-import org.openecomp.sdc.toscaparser.jython.JyProperty;
-import org.openecomp.sdc.toscaparser.utils.PythonUtils;
-
-import com.google.common.base.MoreObjects;
-
-public class Property {
-
- private final JyProperty jyProperty;
-
- public Property(JyProperty jyProperty) {
- this.jyProperty = Objects.requireNonNull(jyProperty);
- }
-
- public String getName() {
- return jyProperty.getJyName();
- }
-
- public Object getValue() {
- return PythonUtils.cast(jyProperty.getJyValue(), jyProperty.getJyValueClassName());
- }
-
- public String getType() {
- return jyProperty.getJyType();
- }
-
- public boolean isRequired() {
- return jyProperty.isJyRequired();
- }
-
- public String getDescription() {
- return jyProperty.getJyDescription();
- }
-
- @Override
- public String toString() {
- return MoreObjects.toStringHelper(this)
- .add("name", getName())
- .add("type", getType())
- .add("required", isRequired())
- .add("description", getDescription())
- .add("value", getValue())
- .toString();
- }
-}