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