12036c4017196325a68f351dab3270f2e784efbc
[aai/sparky-be.git] / src / main / java / org / onap / aai / sparky / search / filters / entity / UiFiltersEntity.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.search.filters.entity;
24
25 import java.util.ArrayList;
26 import java.util.List;
27
28 /**
29  * Represents a list of filters that a given UI view should display.
30  * <p>
31  * When a UI view wants to know which filters it should display, an object of this class is created
32  * to keep track of all the filters that are discovered for that view and is then serialized to JSON
33  * and returned to the view in the response body.
34  */
35 public class UiFiltersEntity {
36   private List<UiFilterEntity> filters = new ArrayList<>();
37
38
39
40   public void addFilter(UiFilterEntity viewFilter) {
41     filters.add(viewFilter);
42   }
43
44   public List<UiFilterEntity> getFilters() {
45     return filters;
46   }
47
48   public void setFilters(List<UiFilterEntity> filters) {
49     this.filters = filters;
50   }
51 }