Fix catalog-be docker build error
[sdc.git] / catalog-model / src / main / java / org / openecomp / sdc / be / model / tosca / constraints / AbstractComparablePropertyConstraint.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 org.openecomp.sdc.be.model.tosca.ToscaType;
23 import org.openecomp.sdc.be.model.tosca.constraints.exception.ConstraintValueDoNotMatchPropertyTypeException;
24 import org.openecomp.sdc.be.model.tosca.constraints.exception.ConstraintViolationException;
25
26 @SuppressWarnings("rawtypes")
27 public abstract class AbstractComparablePropertyConstraint extends AbstractPropertyConstraint {
28
29     private Comparable comparable;
30
31     protected Comparable getComparable() {
32         return comparable;
33     }
34
35     protected void initialize(String rawTextValue, ToscaType propertyType) throws ConstraintValueDoNotMatchPropertyTypeException {
36         // Perform verification that the property type is supported for
37
38         // comparison
39         ConstraintUtil.checkComparableType(propertyType);
40         // Check if the text value is valid for the property type
41         if (propertyType.isValidValue(rawTextValue)) {
42             // Convert the raw text value to a comparable value
43             comparable = ConstraintUtil.convertToComparable(propertyType, rawTextValue);
44         } else {
45             // Invalid value throw exception
46             throw new ConstraintValueDoNotMatchPropertyTypeException(
47                 "The value [" + rawTextValue + "] is not valid for the type [" + propertyType + "]");
48         }
49     }
50
51     protected abstract void doValidate(Object propertyValue) throws ConstraintViolationException;
52
53     public abstract boolean validateValueType(String propertyType) throws ConstraintValueDoNotMatchPropertyTypeException;
54
55     public abstract String getConstraintValueAsString();
56
57     public abstract void changeConstraintValueTypeTo(String propertyType) throws ConstraintValueDoNotMatchPropertyTypeException;
58
59     @Override
60     public void validate(Object propertyValue) throws ConstraintViolationException {
61         if (propertyValue == null) {
62             throw new ConstraintViolationException("Value to check is null");
63         }
64         if (!(comparable.getClass().isAssignableFrom(propertyValue.getClass()))) {
65             throw new ConstraintViolationException(
66                 "Value to check is not comparable to reference type, value type [" + propertyValue.getClass() + "], reference type [" + comparable
67                     .getClass() + "]");
68         }
69         doValidate(propertyValue);
70     }
71 }