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