push addional code
[sdc.git] / openecomp-be / lib / openecomp-sdc-translator-lib / openecomp-sdc-translator-core / src / main / java / org / openecomp / sdc / translator / services / heattotosca / helper / PropertyRegexMatcher.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.translator.services.heattotosca.helper;
22
23 import org.apache.commons.collections.CollectionUtils;
24
25 import java.util.ArrayList;
26 import java.util.List;
27 import java.util.regex.Pattern;
28
29 public class PropertyRegexMatcher {
30   private String propertyName;
31   private List<Pattern> regexPatterns;
32   private String stringToSearchForPropertyValue;
33
34   public String getPropertyName() {
35     return propertyName;
36   }
37
38   public void setPropertyName(String propertyName) {
39     this.propertyName = propertyName;
40   }
41
42   /**
43    * Sets regex.
44    *
45    * @param regexPatterns the regex patterns
46    */
47   public void setRegex(List<String> regexPatterns) {
48     if (CollectionUtils.isEmpty(this.regexPatterns)) {
49       this.regexPatterns = new ArrayList<>();
50     }
51
52     for (String regexPattern : regexPatterns) {
53       this.regexPatterns.add(Pattern.compile(regexPattern));
54     }
55   }
56
57   public List<Pattern> getRegexPatterns() {
58     return regexPatterns;
59   }
60
61   public String getStringToSearchForPropertyValue() {
62     return stringToSearchForPropertyValue;
63   }
64
65   public void setStringToSearchForPropertyValue(String stringToSearchForPropertyValue) {
66     this.stringToSearchForPropertyValue = stringToSearchForPropertyValue;
67   }
68
69 }