summaryrefslogtreecommitdiffstats
path: root/common/onap-tosca-datatype/src/main/java/org/onap/sdc/tosca/datatypes/model/PropertyDefinition.java
diff options
context:
space:
mode:
Diffstat (limited to 'common/onap-tosca-datatype/src/main/java/org/onap/sdc/tosca/datatypes/model/PropertyDefinition.java')
-rw-r--r--common/onap-tosca-datatype/src/main/java/org/onap/sdc/tosca/datatypes/model/PropertyDefinition.java43
1 files changed, 20 insertions, 23 deletions
diff --git a/common/onap-tosca-datatype/src/main/java/org/onap/sdc/tosca/datatypes/model/PropertyDefinition.java b/common/onap-tosca-datatype/src/main/java/org/onap/sdc/tosca/datatypes/model/PropertyDefinition.java
index 331b7b0e64..a3ab24de9d 100644
--- a/common/onap-tosca-datatype/src/main/java/org/onap/sdc/tosca/datatypes/model/PropertyDefinition.java
+++ b/common/onap-tosca-datatype/src/main/java/org/onap/sdc/tosca/datatypes/model/PropertyDefinition.java
@@ -7,9 +7,9 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- *
+ *
* http://www.apache.org/licenses/LICENSE-2.0
- *
+ *
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -33,30 +33,27 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-
package org.onap.sdc.tosca.datatypes.model;
public class PropertyDefinition extends DefinitionOfDataType {
- public PropertyDefinition() {
- setStatus(Status.SUPPORTED.getName());
- setRequired(true);
- }
-
- @Override
- public PropertyDefinition clone() {
- DefinitionOfDataType definitionOfDataType = super.clone();
- PropertyDefinition propertyDefinition = new PropertyDefinition();
- propertyDefinition.set_default(definitionOfDataType.get_default());
- propertyDefinition.setConstraints(definitionOfDataType.getConstraints());
- propertyDefinition.setDescription(definitionOfDataType.getDescription());
- propertyDefinition.setEntry_schema(definitionOfDataType.getEntry_schema());
- propertyDefinition.setRequired(definitionOfDataType.getRequired());
- propertyDefinition.setType(definitionOfDataType.getType());
- propertyDefinition.setStatus(definitionOfDataType.getStatus());
- propertyDefinition.setValue(definitionOfDataType.getValue());
- return propertyDefinition;
- }
-
+ public PropertyDefinition() {
+ setStatus(Status.SUPPORTED.getName());
+ setRequired(true);
+ }
+ @Override
+ public PropertyDefinition clone() {
+ DefinitionOfDataType definitionOfDataType = super.clone();
+ PropertyDefinition propertyDefinition = new PropertyDefinition();
+ propertyDefinition.set_default(definitionOfDataType.get_default());
+ propertyDefinition.setConstraints(definitionOfDataType.getConstraints());
+ propertyDefinition.setDescription(definitionOfDataType.getDescription());
+ propertyDefinition.setEntry_schema(definitionOfDataType.getEntry_schema());
+ propertyDefinition.setRequired(definitionOfDataType.getRequired());
+ propertyDefinition.setType(definitionOfDataType.getType());
+ propertyDefinition.setStatus(definitionOfDataType.getStatus());
+ propertyDefinition.setValue(definitionOfDataType.getValue());
+ return propertyDefinition;
+ }
}