Replaced all tabs with spaces in java and pom.xml
[so.git] / bpmn / so-bpmn-tasks / src / main / java / org / onap / so / client / ticket / ExternalTicket.java
1 package org.onap.so.client.ticket;
2
3 public class ExternalTicket {
4     private String requestId;
5     private String nfRole;
6     private String currentActivity;
7     private String description;
8     private String subscriptionServiceType;
9     private String requestorId;
10     private String timeout;
11     private String errorSource;
12     private String errorCode;
13     private String errorMessage;
14     private String workStep;
15
16     public String getRequestId() {
17         return requestId;
18     }
19
20
21
22     public void setRequestId(String requestId) {
23         this.requestId = requestId;
24     }
25
26
27
28     public String getNfRole() {
29         return nfRole;
30     }
31
32
33
34     public void setNfRole(String nfRole) {
35         this.nfRole = nfRole;
36     }
37
38
39
40     public String getCurrentActivity() {
41         return currentActivity;
42     }
43
44
45
46     public void setCurrentActivity(String currentActivity) {
47         this.currentActivity = currentActivity;
48     }
49
50
51
52     public String getDescription() {
53         return description;
54     }
55
56
57
58     public void setDescription(String description) {
59         this.description = description;
60     }
61
62
63
64     public String getSubscriptionServiceType() {
65         return subscriptionServiceType;
66     }
67
68
69
70     public void setSubscriptionServiceType(String subscriptionServiceType) {
71         this.subscriptionServiceType = subscriptionServiceType;
72     }
73
74
75
76     public String getRequestorId() {
77         return requestorId;
78     }
79
80
81
82     public void setRequestorId(String requestorId) {
83         this.requestorId = requestorId;
84     }
85
86
87
88     public String getTimeout() {
89         return timeout;
90     }
91
92
93
94     public void setTimeout(String timeout) {
95         this.timeout = timeout;
96     }
97
98
99
100     public String getErrorSource() {
101         return errorSource;
102     }
103
104
105
106     public void setErrorSource(String errorSource) {
107         this.errorSource = errorSource;
108     }
109
110
111
112     public String getErrorCode() {
113         return errorCode;
114     }
115
116
117
118     public void setErrorCode(String errorCode) {
119         this.errorCode = errorCode;
120     }
121
122
123
124     public String getErrorMessage() {
125         return errorMessage;
126     }
127
128
129
130     public void setErrorMessage(String errorMessage) {
131         this.errorMessage = errorMessage;
132     }
133
134
135
136     public String getWorkStep() {
137         return workStep;
138     }
139
140
141
142     public void setWorkStep(String workStep) {
143         this.workStep = workStep;
144     }
145
146
147
148     public void createTicket() throws Exception {
149         // Replace with your ticket creation mechanism if any
150     }
151
152
153
154 }