Changing the license and trademark
[aai/sparky-be.git] / src / main / java / org / openecomp / sparky / search / SuggestionList.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.openecomp.sparky.search;
24
25 import java.util.LinkedList;
26 import java.util.List;
27
28 public class SuggestionList {
29   // TODO: verify which data type these fields should be
30   private Long processingTimeInMs;
31   private Long totalFound;
32   private Long numReturned;
33   private List<Suggestion> suggestions = new LinkedList<>();
34   
35   public void addSuggestion(Suggestion suggestion) {
36     suggestions.add(suggestion);
37   }
38
39   public List<Suggestion> getSuggestions() {
40     return suggestions;
41   }
42
43   public void setSuggestions(List<Suggestion> suggestions) {
44     this.suggestions = suggestions;
45   }
46
47   public Long getProcessingTimeInMs() {
48     return processingTimeInMs;
49   }
50
51   public Long getTotalFound() {
52     return totalFound;
53   }
54
55   public Long getNumReturned() {
56     return numReturned;
57   }
58
59   public void setProcessingTimeInMs(Long processingTimeInMs) {
60     this.processingTimeInMs = processingTimeInMs;
61   }
62
63   public void setTotalFound(Long totalFound) {
64     this.totalFound = totalFound;
65   }
66
67   public void setNumReturned(Long numReturned) {
68     this.numReturned = numReturned;
69   }
70 }