push addional code
[sdc.git] / openecomp-be / api / openecomp-sdc-rest-webapp / action-library-rest / action-library-rest-types / src / main / java / org / openecomp / sdcrests / action / types / ListResponseWrapper.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.action.types;
22
23 import org.openecomp.sdc.action.types.EcompComponent;
24
25 import java.util.ArrayList;
26 import java.util.List;
27
28 /**
29  * Defines DTO used for creating Response with list of {@link ActionResponseDto }
30  * or list of {@link EcompComponent }.
31  */
32 public class ListResponseWrapper {
33
34   List<ActionResponseDto> actionList;
35   List<EcompComponent> componentList;
36   List<ActionResponseDto> versions;
37
38
39   public ListResponseWrapper() {
40     this.actionList = new ArrayList<>();
41   }
42
43   public List<ActionResponseDto> getVersions() {
44     return versions;
45   }
46
47   public void setVersions(List<ActionResponseDto> versions) {
48     this.versions = versions;
49   }
50
51   public List<ActionResponseDto> getActionList() {
52     return actionList;
53   }
54
55   public void setActionList(List<ActionResponseDto> actionList) {
56     this.actionList = actionList;
57   }
58
59   public List<EcompComponent> getComponentList() {
60     return componentList;
61   }
62
63   public void setComponentList(List<EcompComponent> componentList) {
64     this.componentList = componentList;
65   }
66
67   public void add(ActionResponseDto e0) {
68     this.getActionList().add(e0);
69   }
70 }