010e1846184f5a8e50a3844bf63f7858a3449c2d
[so.git] /
1 package org.onap.so.appc.orchestrator.service.beans;
2
3 import java.io.Serializable;
4 import java.util.HashMap;
5 import java.util.Map;
6 import org.onap.appc.client.lcm.model.Action;
7 import org.onap.so.appc.orchestrator.service.beans.ApplicationControllerVnf;
8
9 public class ApplicationControllerTaskRequest implements Serializable {
10
11     private static final long serialVersionUID = -3150320542857627682L;
12
13     private Action action;
14     private String requestorId;
15     private String controllerType;
16     private String identityUrl;
17     private String operationsTimeout;
18     private String bookName;
19     private String nodeList;
20     private String fileParameters;
21     private String existingSoftwareVersion;
22     private String newSoftwareVersion;
23     private ApplicationControllerVnf applicationControllerVnf;
24     private Map<String, String> configParams = new HashMap<String, String>();
25
26     public Map<String, String> getConfigParams() {
27         return configParams;
28     }
29
30     public void setConfigParams(Map<String, String> configParams) {
31         this.configParams = configParams;
32     }
33
34     public Action getAction() {
35         return action;
36     }
37
38     public void setAction(Action action) {
39         this.action = action;
40     }
41
42     public String getControllerType() {
43         return controllerType;
44     }
45
46     public void setControllerType(String controllerType) {
47         this.controllerType = controllerType;
48     }
49
50     public ApplicationControllerVnf getApplicationControllerVnf() {
51         return applicationControllerVnf;
52     }
53
54     public void setApplicationControllerVnf(ApplicationControllerVnf applicationControllerVnf) {
55         this.applicationControllerVnf = applicationControllerVnf;
56     }
57
58     public String getIdentityUrl() {
59         return identityUrl;
60     }
61
62     public void setIdentityUrl(String identityUrl) {
63         this.identityUrl = identityUrl;
64     }
65
66     public String getOperationsTimeout() {
67         return operationsTimeout;
68     }
69
70     public void setOperationsTimeout(String operationsTimeout) {
71         this.operationsTimeout = operationsTimeout;
72     }
73
74     public String getBookName() {
75         return bookName;
76     }
77
78     public void setBookName(String bookName) {
79         this.bookName = bookName;
80     }
81
82     public String getNodeList() {
83         return nodeList;
84     }
85
86     public void setNodeList(String nodeList) {
87         this.nodeList = nodeList;
88     }
89
90     public String getFileParameters() {
91         return fileParameters;
92     }
93
94     public void setFileParameters(String fileParameters) {
95         this.fileParameters = fileParameters;
96     }
97
98     public String getExistingSoftwareVersion() {
99         return existingSoftwareVersion;
100     }
101
102     public void setExistingSoftwareVersion(String existingSoftwareVersion) {
103         this.existingSoftwareVersion = existingSoftwareVersion;
104     }
105
106     public String getNewSoftwareVersion() {
107         return newSoftwareVersion;
108     }
109
110     public void setNewSoftwareVersion(String newSoftwareVersion) {
111         this.newSoftwareVersion = newSoftwareVersion;
112     }
113
114     public String getRequestorId() {
115         return requestorId;
116     }
117
118     public void setRequestorId(String requestorId) {
119         this.requestorId = requestorId;
120     }
121
122
123
124 }