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 / TenantIsolationResponse.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 = "tenantIsolationResponse")
30 @JsonInclude(Include.NON_DEFAULT)
31 public class TenantIsolationResponse implements Serializable {
32
33     private static final long serialVersionUID = 756749312745898666L;
34     @JsonProperty("requestId")
35     protected String requestId;
36     @JsonProperty("status")
37     String status;
38     @JsonProperty("message")
39     String message;
40
41     /**
42      * Gets the value of the requestId property.
43      *
44      * @return possible object is {@link String }
45      *
46      */
47     public String getRequestId() {
48         return requestId;
49     }
50
51     /**
52      * Sets the value of the requestId property.
53      *
54      * @param value allowed object is {@link String }
55      *
56      */
57     public void setRequestId(String requestId) {
58         this.requestId = requestId;
59     }
60
61     /**
62      * Gets the value of the status property.
63      *
64      * @return possible object is {@link String }
65      *
66      */
67     public String getStatus() {
68         return status;
69     }
70
71     /**
72      * Sets the value of the status property.
73      *
74      * @param value allowed object is {@link String }
75      *
76      */
77     public void setStatus(String status) {
78         this.status = status;
79     }
80
81     /**
82      * Gets the value of the message property.
83      *
84      * @return possible object is {@link String }
85      *
86      */
87     public String getMessage() {
88         return message;
89     }
90
91     /**
92      * Sets the value of the message property.
93      *
94      * @param value allowed object is {@link String }
95      *
96      */
97     public void setMessage(String message) {
98         this.message = message;
99     }
100
101
102 }