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 / ActionResponseDto.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
24 import java.util.HashMap;
25 import java.util.List;
26
27 /**
28  * Defines DTO used for Action Response.
29  */
30 public class ActionResponseDto {
31
32   String actionUuId;
33   String actionInvariantUuId;
34   String name;
35   String displayName;
36   String version;
37   String description;
38   String status;
39   String timestamp;
40   String updatedBy;
41   List<String> vendorList;
42   List<String> categoryList;
43   List<HashMap<String, String>> supportedModels;
44   List<HashMap<String, String>> supportedComponents;
45
46   public String getActionUuId() {
47     return actionUuId;
48   }
49
50   public void setActionUuId(String actionUuId) {
51     this.actionUuId = actionUuId;
52   }
53
54   public String getActionInvariantUuId() {
55     return actionInvariantUuId;
56   }
57
58   public void setActionInvariantUuId(String actionInvariantUuId) {
59     this.actionInvariantUuId = actionInvariantUuId;
60   }
61
62   public String getVersion() {
63     return version;
64   }
65
66   public void setVersion(String version) {
67     this.version = version;
68   }
69
70   public String getStatus() {
71     return status;
72   }
73
74   public void setStatus(String status) {
75     this.status = status;
76   }
77
78   public String getName() {
79     return name;
80   }
81
82   public void setName(String name) {
83     this.name = name;
84   }
85
86   public String getDisplayName() {
87     return displayName;
88   }
89
90   public void setDisplayName(String displayName) {
91     this.displayName = displayName;
92   }
93
94   public String getDescription() {
95     return description;
96   }
97
98   public void setDescription(String description) {
99     this.description = description;
100   }
101
102   public List<String> getCategoryList() {
103     return categoryList;
104   }
105
106   public void setCategoryList(List<String> categoryList) {
107     this.categoryList = categoryList;
108   }
109
110   public List<String> getVendorList() {
111     return vendorList;
112   }
113
114   public void setVendorList(List<String> vendorList) {
115     this.vendorList = vendorList;
116   }
117
118   public List<HashMap<String, String>> getSupportedComponents() {
119     return supportedComponents;
120   }
121
122   public void setSupportedComponents(List<HashMap<String, String>> supportedComponents) {
123     this.supportedComponents = supportedComponents;
124   }
125
126   public List<HashMap<String, String>> getSupportedModels() {
127     return supportedModels;
128   }
129
130   public void setSupportedModels(List<HashMap<String, String>> supportedModels) {
131     this.supportedModels = supportedModels;
132   }
133
134   public String getTimestamp() {
135     return timestamp;
136   }
137
138   public void setTimestamp(String timeStamp) {
139     this.timestamp = timeStamp;
140   }
141
142   public String getUpdatedBy() {
143     return updatedBy;
144   }
145
146   public void setUpdatedBy(String updatedBy) {
147     this.updatedBy = updatedBy;
148   }
149 }