Support import service with yaml tosca function
[sdc.git] / common-be / src / main / java / org / openecomp / sdc / be / datatypes / elements / PropertyFilterDataDefinition.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 package org.openecomp.sdc.be.datatypes.elements;
17
18 import java.io.Serializable;
19 import java.util.List;
20 import org.apache.commons.collections4.CollectionUtils;
21 import org.openecomp.sdc.be.datatypes.enums.JsonPresentationFields;
22 import org.openecomp.sdc.be.datatypes.tosca.ToscaDataDefinition;
23
24 public class PropertyFilterDataDefinition extends ToscaDataDefinition implements Serializable {
25
26     public List<PropertyFilterConstraintDataDefinition> getConstraints() {
27         final List<PropertyFilterConstraintDataDefinition> constraintList =
28             (List<PropertyFilterConstraintDataDefinition>) getToscaPresentationValue(JsonPresentationFields.PROPERTY_FILTER_CONSTRAINT);
29         if (CollectionUtils.isEmpty(constraintList)) {
30             return List.of();
31         }
32         return constraintList;
33     }
34
35     public void setConstraints(final List<PropertyFilterConstraintDataDefinition> constraints) {
36         setToscaPresentationValue(JsonPresentationFields.PROPERTY_FILTER_CONSTRAINT, constraints);
37     }
38
39     public String getName() {
40         return (String) getToscaPresentationValue(JsonPresentationFields.PROPERTY_FILTER_NAME);
41     }
42
43     public void setName(String name) {
44         setToscaPresentationValue(JsonPresentationFields.PROPERTY_FILTER_NAME, name);
45     }
46
47 }