9472b539ab6791dfdc4013aca692714b64117e96
[sdc.git] / common / openecomp-tosca-datatype / src / main / java / org / openecomp / sdc / tosca / datatypes / model / PropertyDefinition.java
1 /*
2  * Copyright © 2016-2018 European Support Limited
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package org.openecomp.sdc.tosca.datatypes.model;
18
19 import org.openecomp.sdc.tosca.services.DataModelCloneUtil;
20
21 import java.util.Objects;
22
23 public class PropertyDefinition extends DefinitionOfDataType {
24
25   public PropertyDefinition() {
26     this.status = Status.SUPPORTED;
27     this.required = true;
28   }
29
30   @Override
31   public PropertyDefinition clone() {
32     PropertyDefinition propertyDefinition = new PropertyDefinition();
33     propertyDefinition.setType(this.getType());
34     propertyDefinition.setDescription(this.getDescription());
35     propertyDefinition.setRequired(this.getRequired());
36     propertyDefinition.set_default(this.get_default());
37     propertyDefinition.setStatus(this.getStatus());
38     propertyDefinition.setEntry_schema(
39         Objects.isNull(this.getEntry_schema()) ? null : this.getEntry_schema().clone());
40     propertyDefinition.setConstraints(DataModelCloneUtil.cloneConstraints(this.getConstraints()));
41     return propertyDefinition;
42   }
43
44
45 }