Catalog alignment
[sdc.git] / catalog-model / src / main / java / org / openecomp / sdc / be / model / tosca / constraints / LengthConstraint.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 org.openecomp.sdc.be.model.PropertyConstraint;
24 import org.openecomp.sdc.be.model.tosca.ToscaType;
25 import org.openecomp.sdc.be.model.tosca.constraints.exception.ConstraintViolationException;
26 import org.openecomp.sdc.be.model.tosca.constraints.exception.PropertyConstraintException;
27 import java.util.List;
28 import java.util.Map;
29 import org.openecomp.sdc.be.model.tosca.constraints.exception.ConstraintFunctionalException;
30
31
32 import javax.validation.constraints.NotNull;
33
34 public class LengthConstraint extends AbstractPropertyConstraint {
35
36     @NotNull
37     private Integer length;
38
39     protected void doValidate(Object propertyValue) throws ConstraintViolationException {
40         if (propertyValue instanceof String && String.valueOf(propertyValue).length() != length) {
41             throw new ConstraintViolationException("The length of the value is not equals to [" + length + "]");
42         } else if (propertyValue instanceof List && ((List) propertyValue).size()  != length) {
43             throw new ConstraintViolationException("The size of the list is not equals to [" + length + "]");
44         } else if (propertyValue instanceof Map && ((Map) propertyValue).size()  != length) {
45             throw new ConstraintViolationException("The size of the map is not equals to [" + length + "]");
46         }
47     }
48
49     public void validate(Object propertyValue) throws ConstraintViolationException {
50         if (propertyValue == null) {
51             throw new ConstraintViolationException("Value to validate is null");
52         }
53
54         if(!(propertyValue instanceof String || propertyValue instanceof List || propertyValue instanceof Map)) {
55             throw new ConstraintViolationException("This constraint can only be applied on String/List/Map value");
56         }
57
58         doValidate(propertyValue);
59     }
60
61     public Integer getLength() {
62         return length;
63     }
64
65     public void setLength(Integer length) {
66         this.length = length;
67     }
68
69     @Override
70     public ConstraintType getConstraintType() {
71         return null;
72     }
73
74     @Override
75     public void validateValueOnUpdate(PropertyConstraint newConstraint) throws PropertyConstraintException {
76
77     }
78
79     @Override
80     public String getErrorMessage(ToscaType toscaType, ConstraintFunctionalException e, String propertyName) {
81         return getErrorMessage(toscaType, e, propertyName, "%s length must be %s", String.valueOf(length));
82     }
83
84 }