blob: 1848b0823aa5eec0c30019dba7960515aad7e394 [file] [log] [blame]
Aharoni, Pavel (pa0916)ca3cb012018-10-22 15:29:57 +03001/*-
2 * ============LICENSE_START=======================================================
3 * OSAM
4 * ================================================================================
5 * Copyright (C) 2018 AT&T
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
22
23package org.onap.osam.mso.rest;
24
25import java.util.List;
26
27public class Task {
28
29 private String taskId;
30 private String type;
31 private String nfRole;
32 private String subscriptionServiceType;
33 private String originalRequestId;
34 private String originalRequestorId;
35 private String errorSource;
36 private String errorCode;
37 private String errorMessage;
38 private String buildingBlockName;
39 private String buildingBlockStep;
40 private List<String> validResponses;
41
42
43 public String getTaskId() {
44 return taskId;
45 }
46
47 public void setTaskId(String taskId) {
48 this.taskId = taskId;
49 }
50
51 public String getType() {
52 return type;
53 }
54
55 public void setType(String type) {
56 this.type = type;
57 }
58
59 public String getNfRole() {
60 return nfRole;
61 }
62
63 public void setNfRole(String nfRole) {
64 this.nfRole = nfRole;
65 }
66
67 public String getSubscriptionServiceType() {
68 return subscriptionServiceType;
69 }
70
71 public void setSubscriptionServiceType(String subscriptionServiceType) {
72 this.subscriptionServiceType = subscriptionServiceType;
73 }
74
75 public String getOriginalRequestId() {
76 return originalRequestId;
77 }
78
79 public void setOriginalRequestId(String originalRequestId) {
80 this.originalRequestId = originalRequestId;
81 }
82
83 public String getOriginalRequestorId() {
84 return originalRequestorId;
85 }
86
87 public void setOriginalRequestorId(String originalRequestorId) {
88 this.originalRequestorId = originalRequestorId;
89 }
90
91 public String getErrorSource() {
92 return errorSource;
93 }
94
95 public void setErrorSource(String errorSource) {
96 this.errorSource = errorSource;
97 }
98
99 public String getErrorCode() {
100 return errorCode;
101 }
102
103 public void setErrorCode(String errorCode) {
104 this.errorCode = errorCode;
105 }
106
107 public String getErrorMessage() {
108 return errorMessage;
109 }
110
111 public void setErrorMessage(String errorMessage) {
112 this.errorMessage = errorMessage;
113 }
114
115 public String getBuildingBlockName() {
116 return buildingBlockName;
117 }
118
119 public void setBuildingBlockName(String buildingBlockName) {
120 this.buildingBlockName = buildingBlockName;
121 }
122
123 public String getBuildingBlockStep() {
124 return buildingBlockStep;
125 }
126
127 public void setBuildingBlockStep(String buildingBlockStep) {
128 this.buildingBlockStep = buildingBlockStep;
129 }
130
131 public List<String> getValidResponses() {
132 return validResponses;
133 }
134
135 public void setValidResponses(List<String> validResponses) {
136 this.validResponses = validResponses;
137 }
138
139
140
141}