Temp fix to allow tosca functions in op props
[sdc.git] / catalog-model / src / main / java / org / openecomp / sdc / be / ui / model / UIConstraint.java
1 /*
2  * Copyright © 2016-2018 European Support Limited
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 package org.openecomp.sdc.be.ui.model;
17
18 import java.io.Serializable;
19 import lombok.EqualsAndHashCode;
20 import lombok.Getter;
21 import lombok.Setter;
22 import lombok.ToString;
23
24 @Getter
25 @Setter
26 @EqualsAndHashCode
27 @ToString
28 public class UIConstraint implements Serializable {
29
30     private String capabilityName;
31     private String servicePropertyName;
32     private String constraintOperator;
33     private String sourceType;
34     private String sourceName;
35     private Object value;
36
37     public UIConstraint() {
38     }
39
40     public UIConstraint(String servicePropertyName, String constraintOperator, String sourceType, Object value) {
41         this.servicePropertyName = servicePropertyName;
42         this.constraintOperator = constraintOperator;
43         this.sourceType = sourceType;
44         this.value = value;
45     }
46
47     public UIConstraint(String servicePropertyName, String constraintOperator, String sourceType, String sourceName, Object value) {
48         this.servicePropertyName = servicePropertyName;
49         this.constraintOperator = constraintOperator;
50         this.sourceType = sourceType;
51         this.sourceName = sourceName;
52         this.value = value;
53     }
54 }