Update license and poms
[aai/sparky-be.git] / sparkybe-onap-service / src / main / java / org / onap / aai / sparky / search / config / SuggestionConfig.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017-2018 AT&T Intellectual Property. All rights reserved.
6  * Copyright © 2017-2018 Amdocs
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  *       http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  */
21 package org.onap.aai.sparky.search.config;
22
23 import java.util.Collection;
24 import java.util.HashMap;
25 import java.util.Map;
26
27 public class SuggestionConfig {
28
29
30   private Map<String, String> pairingList;
31   private Collection<String> stopWords;
32   private String defaultPairingValue;
33   private String ViSuggestionRoute;
34
35
36   public SuggestionConfig() {}
37
38
39   public Collection<String> getStopWords() {
40     return stopWords;
41   }
42
43   public void setStopWords(Collection<String> stopWords) {
44     this.stopWords = stopWords;
45   }
46
47   public Map<String, String> getPairingList() {
48     return pairingList;
49   }
50
51   public void setPairingList(HashMap<String, String> pairingList) {
52     this.pairingList = pairingList;
53   }
54
55   public String getDefaultPairingValue() {
56     return defaultPairingValue;
57   }
58
59   public void setDefaultPairingValue(String defaultPairingValue) {
60     this.defaultPairingValue = defaultPairingValue;
61   }
62
63   public String getViSuggestionRoute() {
64     return ViSuggestionRoute;
65   }
66
67   public void setViSuggestionRoute(String ViSuggestionRoute) {
68     this.ViSuggestionRoute = ViSuggestionRoute;
69   }
70
71
72 }