AT&T 1712 and 1802 release code
[so.git] / mso-api-handlers / mso-api-handler-infra / src / main / java / org / openecomp / mso / apihandlerinfra / tenantisolationbeans / TenantIsolationResponse.java
1 /*-\r
2  * ============LICENSE_START=======================================================\r
3  * ONAP - SO\r
4  * ================================================================================\r
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.\r
6  * ================================================================================\r
7  * Licensed under the Apache License, Version 2.0 (the "License");\r
8  * you may not use this file except in compliance with the License.\r
9  * You may obtain a copy of the License at\r
10  * \r
11  *      http://www.apache.org/licenses/LICENSE-2.0\r
12  * \r
13  * Unless required by applicable law or agreed to in writing, software\r
14  * distributed under the License is distributed on an "AS IS" BASIS,\r
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
16  * See the License for the specific language governing permissions and\r
17  * limitations under the License.\r
18  * ============LICENSE_END=========================================================\r
19  */\r
20 \r
21 package org.openecomp.mso.apihandlerinfra.tenantisolationbeans;\r
22 \r
23 import java.io.Serializable;\r
24 \r
25 import com.fasterxml.jackson.annotation.JsonInclude;\r
26 import com.fasterxml.jackson.annotation.JsonInclude.Include;\r
27 import com.fasterxml.jackson.annotation.JsonProperty;\r
28 import com.fasterxml.jackson.annotation.JsonRootName;\r
29 \r
30 @JsonRootName(value = "tenantIsolationResponse")\r
31 @JsonInclude(Include.NON_DEFAULT)\r
32 public class TenantIsolationResponse implements Serializable {\r
33         \r
34         private static final long serialVersionUID = 756749312745898666L;\r
35         @JsonProperty("requestId")\r
36         protected String requestId;\r
37         @JsonProperty("status")\r
38         String status;\r
39         @JsonProperty("message")\r
40         String message; \r
41 \r
42     /**\r
43      * Gets the value of the requestId property.\r
44      *\r
45      * @return\r
46      *     possible object is\r
47      *     {@link String }\r
48      *\r
49      */ \r
50         public String getRequestId() {\r
51                 return requestId;\r
52         }\r
53         \r
54     /**\r
55      * Sets the value of the requestId property.\r
56      *\r
57      * @param value\r
58      *     allowed object is\r
59      *     {@link String }\r
60      *\r
61      */ \r
62         public void setRequestId(String requestId) {\r
63                 this.requestId = requestId;\r
64         }\r
65         \r
66     /**\r
67      * Gets the value of the status property.\r
68      *\r
69      * @return\r
70      *     possible object is\r
71      *     {@link String }\r
72      *\r
73      */         \r
74         public String getStatus() {\r
75                 return status;\r
76         }\r
77         \r
78     /**\r
79      * Sets the value of the status property.\r
80      *\r
81      * @param value\r
82      *     allowed object is\r
83      *     {@link String }\r
84      *\r
85      */         \r
86         public void setStatus(String status) {\r
87                 this.status = status;\r
88         }\r
89         \r
90            /**\r
91      * Gets the value of the message property.\r
92      *\r
93      * @return\r
94      *     possible object is\r
95      *     {@link String }\r
96      *\r
97      */         \r
98         public String getMessage() {\r
99                 return message;\r
100         }       \r
101         \r
102     /**\r
103      * Sets the value of the message property.\r
104      *\r
105      * @param value\r
106      *     allowed object is\r
107      *     {@link String }\r
108      *\r
109      */         \r
110         public void setMessage(String message) {\r
111                 this.message = message;\r
112         }       \r
113 \r
114 \r
115 }\r