re base code
[sdc.git] / catalog-model / src / main / java / org / openecomp / sdc / be / model / tosca / constraints / ValidValuesConstraint.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.openecomp.sdc.be.model.tosca.constraints;
22
23 import com.google.common.collect.Sets;
24 import org.openecomp.sdc.be.model.tosca.ToscaType;
25 import org.openecomp.sdc.be.model.tosca.constraints.exception.ConstraintValueDoNotMatchPropertyTypeException;
26 import org.openecomp.sdc.be.model.tosca.constraints.exception.ConstraintViolationException;
27
28 import javax.validation.constraints.NotNull;
29 import java.util.List;
30 import java.util.Set;
31
32 public class ValidValuesConstraint extends AbstractPropertyConstraint {
33
34     @NotNull
35     private List<String> validValues;
36     private Set<Object> validValuesTyped;
37
38     public ValidValuesConstraint(List<String> validValues) {
39         this.validValues = validValues;
40     }
41
42     public ValidValuesConstraint() {
43     }
44
45     @Override
46     public void initialize(ToscaType propertyType) throws ConstraintValueDoNotMatchPropertyTypeException {
47         validValuesTyped = Sets.newHashSet();
48         if (validValues == null) {
49             throw new ConstraintValueDoNotMatchPropertyTypeException(
50                     "validValues constraint has invalid value <> property type is <" + propertyType.toString() + ">");
51         }
52         for (String value : validValues) {
53             if (!propertyType.isValidValue(value)) {
54                 throw new ConstraintValueDoNotMatchPropertyTypeException("validValues constraint has invalid value <"
55                         + value + "> property type is <" + propertyType.toString() + ">");
56             } else {
57                 validValuesTyped.add(propertyType.convert(value));
58             }
59         }
60     }
61
62     @Override
63     public void validate(Object propertyValue) throws ConstraintViolationException {
64         if (propertyValue == null) {
65             throw new ConstraintViolationException("Value to validate is null");
66         }
67         if (!validValuesTyped.contains(propertyValue)) {
68             throw new ConstraintViolationException("The value is not in the list of valid values");
69         }
70     }
71
72     public List<String> getValidValues() {
73         return validValues;
74     }
75
76     public void setValidValues(List<String> validValues) {
77         this.validValues = validValues;
78     }
79
80 }