Convert Sparky to Spring-Boot
[aai/sparky-be.git] / sparkybe-onap-service / src / main / java / org / onap / aai / sparky / common / search / CommonSearchSuggestion.java
1 /**
2  * ============LICENSE_START===================================================
3  * SPARKY (AAI UI service)
4  * ============================================================================
5  * Copyright © 2017 AT&T Intellectual Property.
6  * Copyright © 2017 Amdocs
7  * All rights reserved.
8  * ============================================================================
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  *
13  *      http://www.apache.org/licenses/LICENSE-2.0
14  *
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  * ============LICENSE_END=====================================================
21  *
22  * ECOMP and OpenECOMP are trademarks
23  * and service marks of AT&T Intellectual Property.
24  */
25 package org.onap.aai.sparky.common.search;
26
27 import java.util.ArrayList;
28 import java.util.List;
29
30 import org.onap.aai.sparky.search.entity.SearchSuggestion;
31 import org.onap.aai.sparky.search.filters.entity.UiFilterValueEntity;
32
33 import com.fasterxml.jackson.annotation.JsonInclude;
34 import com.fasterxml.jackson.annotation.JsonInclude.Include;
35
36 @JsonInclude(Include.NON_NULL)
37 public class CommonSearchSuggestion implements SearchSuggestion {
38   protected String hashId;
39   protected String route;
40   protected String text;
41   protected List<UiFilterValueEntity> filterValues = new ArrayList<>();
42
43   public CommonSearchSuggestion() {}
44
45   public CommonSearchSuggestion(String hashId, String route, String text, String perspective,
46       List<UiFilterValueEntity> filterValues) {
47     this.hashId = hashId;
48     this.route = route;
49     this.text = text;
50     this.filterValues = filterValues;
51   }
52
53   public List<UiFilterValueEntity> getFilterValues() {
54     return filterValues;
55   }
56
57   public String getHashId() {
58     return hashId;
59   }
60
61   public String getRoute() {
62     return route;
63   }
64
65   public String getText() {
66     return text;
67   }
68
69   public void setHashId(String hashId) {
70     this.hashId = hashId;
71   }
72
73   public void setRoute(String route) {
74     this.route = route;
75   }
76
77   public void setText(String text) {
78     this.text = text;
79   }
80
81   @Override
82   public String toString() {
83     return "CommonSearchSuggestion [" + (hashId != null ? "hashId=" + hashId + ", " : "")
84         + (route != null ? "route=" + route + ", " : "")
85         + (text != null ? "text=" + text + ", " : "")
86         + (filterValues != null ? "filterValues=" + filterValues : "") + "]";
87   }
88
89
90 }