2 * ============LICENSE_START=======================================================
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
11 * http://www.apache.org/licenses/LICENSE-2.0
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=========================================================
20 package org.openecomp.sdcrests.wrappers;
22 import java.io.Serializable;
23 import java.util.ArrayList;
24 import java.util.List;
26 public class GenericCollectionWrapper<T> implements Serializable {
28 private static final long serialVersionUID = 1L;
29 private transient List<T> results;
30 private int listCount;
32 public GenericCollectionWrapper() {
33 this.results = new ArrayList<>();
37 * Instantiates a new Generic collection wrapper.
39 * @param list the list
41 public GenericCollectionWrapper(List<T> list) {
42 if (!list.isEmpty()) {
44 this.listCount = list.size();
46 this.results = new ArrayList<>();
50 public List<T> getResults() {
54 public void setResults(List<T> results) {
55 this.results = results;
58 public int getListCount() {
62 public void setListCount(int listCount) {
63 this.listCount = listCount;
69 * @param item the list item
72 public boolean add(T item) {
73 if (this.getResults().add(item)) {
74 this.setListCount(this.getResults().size());