Replaced all tabs with spaces in java and pom.xml
[so.git] / mso-api-handlers / mso-api-handler-infra / src / main / java / org / onap / so / apihandlerinfra / tenantisolationbeans / Request.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
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.onap.so.apihandlerinfra.tenantisolationbeans;
22
23 import com.fasterxml.jackson.annotation.JsonInclude;
24 import com.fasterxml.jackson.annotation.JsonInclude.Include;
25 import com.fasterxml.jackson.annotation.JsonRootName;
26
27
28 @JsonRootName(value = "request")
29 @JsonInclude(Include.NON_DEFAULT)
30 public class Request {
31
32     protected String requestId;
33     protected String startTime;
34     protected InstanceReferences instanceReferences;
35     protected String requestScope;
36     protected String requestType;
37     protected RequestDetails requestDetails;
38     protected RequestStatus requestStatus;
39
40
41     public String getRequestId() {
42         return requestId;
43     }
44
45     public void setRequestId(String requestId) {
46         this.requestId = requestId;
47     }
48
49     public String getStartTime() {
50         return startTime;
51     }
52
53     public void setStartTime(String startTime) {
54         this.startTime = startTime;
55     }
56
57     public String getRequestScope() {
58         return requestScope;
59     }
60
61     public void setRequestScope(String requestScope) {
62         this.requestScope = requestScope;
63     }
64
65     public String getRequestType() {
66         return requestType;
67     }
68
69     public void setRequestType(String requestType) {
70         this.requestType = requestType;
71     }
72
73     public RequestStatus getRequestStatus() {
74         return requestStatus;
75     }
76
77     public void setRequestStatus(RequestStatus requestStatus) {
78         this.requestStatus = requestStatus;
79     }
80
81     public InstanceReferences getInstanceReferences() {
82         return instanceReferences;
83     }
84
85     public void setInstanceReferences(InstanceReferences instanceReferences) {
86         this.instanceReferences = instanceReferences;
87     }
88
89     public RequestDetails getRequestDetails() {
90         return requestDetails;
91     }
92
93     public void setRequestDetails(RequestDetails requestDetails) {
94         this.requestDetails = requestDetails;
95     }
96
97 }