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 / TenantIsolationRequest.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 java.io.Serializable;
24 import com.fasterxml.jackson.annotation.JsonInclude;
25 import com.fasterxml.jackson.annotation.JsonInclude.Include;
26 import com.fasterxml.jackson.annotation.JsonProperty;
27 import com.fasterxml.jackson.annotation.JsonRootName;
28
29 @JsonRootName(value = "tenantIsolationRequest")
30 @JsonInclude(Include.NON_DEFAULT)
31 public class TenantIsolationRequest implements Serializable {
32
33     private static final long serialVersionUID = -210322298981798607L;
34     @JsonProperty("requestId")
35     protected String requestId;
36     @JsonProperty("startTime")
37     protected String startTime;
38     @JsonProperty("requestScope")
39     protected String requestScope;
40     @JsonProperty("requestType")
41     protected String requestType;
42     @JsonProperty("requestDetails")
43     protected RequestDetails requestDetails;
44     @JsonProperty("requestStatus")
45     protected RequestStatus requestStatus;
46
47     public String getRequestId() {
48         return requestId;
49     }
50
51     public void setRequestId(String requestId) {
52         this.requestId = requestId;
53     }
54
55     public String getStartTime() {
56         return startTime;
57     }
58
59     public void setStartTime(String startTime) {
60         this.startTime = startTime;
61     }
62
63     public String getRequestScope() {
64         return requestScope;
65     }
66
67     public void setRequestScope(String requestScope) {
68         this.requestScope = requestScope;
69     }
70
71     public String getRequestType() {
72         return requestType;
73     }
74
75     public void setRequestType(String requestType) {
76         this.requestType = requestType;
77     }
78
79     public RequestStatus getRequestStatus() {
80         return requestStatus;
81     }
82
83     public void setRequestStatus(RequestStatus requestStatus) {
84         this.requestStatus = requestStatus;
85     }
86
87     public RequestDetails getRequestDetails() {
88         return requestDetails;
89     }
90
91     public void setRequestDetails(RequestDetails requestDetails) {
92         this.requestDetails = requestDetails;
93     }
94
95     @Override
96     public String toString() {
97         return "Request [requestId=" + requestId + ", startTime=" + startTime + ", requestType=" + requestType
98                 + ", requestDetails=" + requestDetails.toString() + ", requestStatus=" + requestStatus.toString() + "]";
99     }
100
101 }