Replaced all tabs with spaces in java and pom.xml
[so.git] / bpmn / MSOCommonBPMN / src / main / java / org / onap / so / client / avpn / dmaap / beans / AsyncRequestStatus.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2017 - 2018 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.onap.so.client.avpn.dmaap.beans;
22
23 import com.fasterxml.jackson.annotation.JsonProperty;
24 import com.fasterxml.jackson.annotation.JsonRootName;
25
26 @JsonRootName(value = "asyncRequestStatus")
27 public class AsyncRequestStatus {
28
29     @JsonProperty("requestId")
30     private String requestId;
31     @JsonProperty("clientSource")
32     private String clientSource;
33     @JsonProperty("correlator")
34     private String correlator;
35     @JsonProperty("instanceReferences")
36     private InstanceReferences instanceReferences;
37     @JsonProperty("startTime")
38     private String startTime;
39     @JsonProperty("finishTime")
40     private String finishTime;
41     @JsonProperty("requestScope")
42     private String requestScope;
43     @JsonProperty("requestType")
44     private String requestType;
45     @JsonProperty("requestStatus")
46     private RequestStatus requestStatus;
47
48     public String getRequestId() {
49         return requestId;
50     }
51
52     public void setRequestId(String requestId) {
53         this.requestId = requestId;
54     }
55
56     public String getClientSource() {
57         return clientSource;
58     }
59
60     public void setClientSource(String clientSource) {
61         this.clientSource = clientSource;
62     }
63
64     public String getCorrelator() {
65         return correlator;
66     }
67
68     public void setCorrelator(String correlator) {
69         this.correlator = correlator;
70     }
71
72     public InstanceReferences getInstanceReferences() {
73         return instanceReferences;
74     }
75
76     public void setInstanceReferences(InstanceReferences instanceReferences) {
77         this.instanceReferences = instanceReferences;
78     }
79
80     public String getStartTime() {
81         return startTime;
82     }
83
84     public void setStartTime(String startTime) {
85         this.startTime = startTime;
86     }
87
88     public String getFinishTime() {
89         return finishTime;
90     }
91
92     public void setFinishTime(String finishTime) {
93         this.finishTime = finishTime;
94     }
95
96     public String getRequestScope() {
97         return requestScope;
98     }
99
100     public void setRequestScope(String requestScope) {
101         this.requestScope = requestScope;
102     }
103
104     public String getRequestType() {
105         return requestType;
106     }
107
108     public void setRequestType(String requestType) {
109         this.requestType = requestType;
110     }
111
112     public RequestStatus getRequestStatus() {
113         return requestStatus;
114     }
115
116     public void setRequestStatus(RequestStatus requestStatus) {
117         this.requestStatus = requestStatus;
118     }
119 }