c0311c81ab0521a5ff1d29681b285f35640ea733
[sdc.git] / catalog-model / src / main / java / org / openecomp / sdc / be / model / tosca / constraints / GreaterOrEqualConstraint.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 javax.validation.constraints.NotNull;
23 import lombok.AllArgsConstructor;
24 import lombok.EqualsAndHashCode;
25 import lombok.Getter;
26 import lombok.Setter;
27 import org.openecomp.sdc.be.datatypes.enums.ConstraintType;
28 import org.openecomp.sdc.be.model.PropertyConstraint;
29 import org.openecomp.sdc.be.model.tosca.ToscaType;
30 import org.openecomp.sdc.be.model.tosca.constraints.exception.ConstraintFunctionalException;
31 import org.openecomp.sdc.be.model.tosca.constraints.exception.ConstraintValueDoNotMatchPropertyTypeException;
32 import org.openecomp.sdc.be.model.tosca.constraints.exception.ConstraintViolationException;
33 import org.openecomp.sdc.be.model.tosca.constraints.exception.PropertyConstraintException;
34
35 @Getter
36 @Setter
37 @AllArgsConstructor
38 @EqualsAndHashCode
39 public class GreaterOrEqualConstraint<T> extends AbstractComparablePropertyConstraint {
40
41     @NotNull
42     private T greaterOrEqual;
43
44     @Override
45     public void initialize(ToscaType propertyType) throws ConstraintValueDoNotMatchPropertyTypeException {
46         initialize(String.valueOf(greaterOrEqual), propertyType);
47     }
48
49     @Override
50     public ConstraintType getConstraintType() {
51         return ConstraintType.GREATER_OR_EQUAL;
52     }
53
54     @Override
55     public void validateValueOnUpdate(PropertyConstraint newConstraint) throws PropertyConstraintException {
56     }
57
58     @Override
59     protected void doValidate(Object propertyValue) throws ConstraintViolationException {
60         if (getComparable().compareTo(propertyValue) > 0) {
61             throw new ConstraintViolationException(propertyValue + " <= " + greaterOrEqual);
62         }
63     }
64
65     @Override
66     public String getErrorMessage(ToscaType toscaType, ConstraintFunctionalException e, String propertyName) {
67         return getErrorMessage(toscaType, e, propertyName, "'%s' value must be greater than or equal to %s", String.valueOf(greaterOrEqual));
68     }
69
70     @Override
71     public boolean validateValueType(String propertyType) throws ConstraintValueDoNotMatchPropertyTypeException {
72         ToscaType toscaType = ToscaType.getToscaType(propertyType);
73         if (toscaType == null) {
74             throw new ConstraintValueDoNotMatchPropertyTypeException(
75                 "greaterOrEqual constraint has invalid values <" + greaterOrEqual.toString() + "> property type is <" + propertyType + ">");
76         }
77         if (greaterOrEqual == null) {
78             throw new ConstraintValueDoNotMatchPropertyTypeException(
79                 "greaterOrEqual constraint has invalid value <> property type is <" + propertyType + ">");
80         }
81         return toscaType.isValueTypeValid(greaterOrEqual);
82     }
83
84     @Override
85     public String toString() {
86         return String.valueOf(greaterOrEqual);
87     }
88
89     @Override
90     public void changeConstraintValueTypeTo(String propertyType) throws ConstraintValueDoNotMatchPropertyTypeException {
91         ToscaType toscaType = ToscaType.getToscaType(propertyType);
92         try {
93             greaterOrEqual = (T) toscaType.convert(String.valueOf(greaterOrEqual));
94         } catch (Exception e) {
95             throw new ConstraintValueDoNotMatchPropertyTypeException(
96                 "greaterOrEqual constraint has invalid values <" + greaterOrEqual.toString() + "> property type is <" + propertyType + ">");
97         }
98     }
99 }