push addional code
[sdc.git] / openecomp-be / lib / openecomp-heat-lib / src / main / java / org / openecomp / sdc / heat / datatypes / model / Constraint.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.heat.datatypes.model;
22
23 import java.util.ArrayList;
24 import java.util.List;
25
26 public class Constraint {
27   private Object[] length;
28   private Integer[] range;
29   private List<Object> valid_values;
30   private String pattern;
31
32   public Constraint() {
33   }
34
35   public Integer[] getRange() {
36     return range;
37   }
38
39   public void setRange(Integer[] inRange) {
40     this.range = new Integer[]{inRange[0], inRange[1]};
41   }
42
43   public List<Object> getValid_values() {
44     return valid_values;
45   }
46
47   public void setValid_values(List<Object> validValues) {
48     this.valid_values = validValues;
49   }
50
51   /**
52    * Add valid value.
53    *
54    * @param validValue the valid value
55    */
56   public void addValidValue(Object validValue) {
57     if (this.valid_values == null) {
58       this.valid_values = new ArrayList<>();
59     }
60     valid_values.add(validValue);
61   }
62
63   public Object[] getLength() {
64     return length;
65   }
66
67   public void setLength(Object[] length) {
68     this.length = length;
69   }
70
71   public String getPattern() {
72     return pattern;
73   }
74
75   public void setPattern(String pattern) {
76     this.pattern = pattern;
77   }
78 }