Update license and poms
[aai/sparky-be.git] / sparkybe-onap-service / src / main / java / org / onap / aai / sparky / common / search / CommonSearchSuggestion.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.common.search;
22
23 import java.util.ArrayList;
24 import java.util.List;
25
26 import org.onap.aai.sparky.search.entity.SearchSuggestion;
27 import org.onap.aai.sparky.search.filters.entity.UiFilterValueEntity;
28
29 import com.fasterxml.jackson.annotation.JsonInclude;
30 import com.fasterxml.jackson.annotation.JsonInclude.Include;
31
32 @JsonInclude(Include.NON_NULL)
33 public class CommonSearchSuggestion implements SearchSuggestion {
34   protected String hashId;
35   protected String route;
36   protected String text;
37   protected List<UiFilterValueEntity> filterValues = new ArrayList<>();
38
39   public CommonSearchSuggestion() {}
40
41   public CommonSearchSuggestion(String hashId, String route, String text, String perspective,
42       List<UiFilterValueEntity> filterValues) {
43     this.hashId = hashId;
44     this.route = route;
45     this.text = text;
46     this.filterValues = filterValues;
47   }
48
49   public List<UiFilterValueEntity> getFilterValues() {
50     return filterValues;
51   }
52
53   public String getHashId() {
54     return hashId;
55   }
56
57   public String getRoute() {
58     return route;
59   }
60
61   public String getText() {
62     return text;
63   }
64
65   public void setHashId(String hashId) {
66     this.hashId = hashId;
67   }
68
69   public void setRoute(String route) {
70     this.route = route;
71   }
72
73   public void setText(String text) {
74     this.text = text;
75   }
76
77   @Override
78   public String toString() {
79     return "CommonSearchSuggestion [" + (hashId != null ? "hashId=" + hashId + ", " : "")
80         + (route != null ? "route=" + route + ", " : "")
81         + (text != null ? "text=" + text + ", " : "")
82         + (filterValues != null ? "filterValues=" + filterValues : "") + "]";
83   }
84
85
86 }