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