[SDC-29] Amdocs OnBoard 1707 initial commit.
[sdc.git] / openecomp-be / api / openecomp-sdc-rest-webapp / openecomp-sdc-common-rest / src / main / java / org / openecomp / sdcrests / wrappers / GenericCollectionWrapper.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.openecomp.sdcrests.wrappers;
22
23 import java.io.Serializable;
24 import java.util.ArrayList;
25 import java.util.List;
26
27 public class GenericCollectionWrapper<T> implements Serializable {
28   private static final long serialVersionUID = 1L;
29
30   private List<T> results;
31   private int listCount;
32
33   public GenericCollectionWrapper() {
34     this.results = new ArrayList<>();
35   }
36
37   /**
38    * Instantiates a new Generic collection wrapper.
39    *
40    * @param list      the list
41    * @param listCount the list count
42    */
43   public GenericCollectionWrapper(List<T> list, int listCount) {
44     if (!list.isEmpty()) {
45       this.results = list;
46       this.listCount = listCount;
47     }
48   }
49
50   public List<T> getResults() {
51     return results;
52   }
53
54   public void setResults(List<T> results) {
55     this.results = results;
56   }
57
58   public int getListCount() {
59     return listCount;
60   }
61
62   public void setListCount(int listCount) {
63     this.listCount = listCount;
64   }
65
66   /**
67    * Add boolean.
68    *
69    * @param item the list item
70    * @return the boolean
71    */
72   public boolean add(T item) {
73     if (this.getResults().add(item)) {
74       this.setListCount(this.getResults().size());
75       return true;
76     }
77     return false;
78   }
79 }