AT&T 1712 and 1802 release code
[so.git] / mso-api-handlers / mso-api-handler-infra / src / main / java / org / openecomp / mso / apihandlerinfra / tenantisolationbeans / RequestReferences.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 = "requestReferences")\r
31 @JsonInclude(Include.NON_DEFAULT)\r
32 public class RequestReferences implements Serializable {\r
33         \r
34         private static final long serialVersionUID = 5873356773819905368L;\r
35         \r
36         @JsonProperty("requestId")\r
37         protected String requestId;\r
38         \r
39         @JsonProperty("instanceId")\r
40         String instanceId;\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 instanceId property.\r
68      *\r
69      * @return\r
70      *     possible object is\r
71      *     {@link String }\r
72      *\r
73      */         \r
74         public String getInstanceId() {\r
75                 return instanceId;\r
76         }\r
77         \r
78     /**\r
79      * Sets the value of the instanceId property.\r
80      *\r
81      * @param value\r
82      *     allowed object is\r
83      *     {@link String }\r
84      *\r
85      */         \r
86         public void setInstanceId(String instanceId) {\r
87                 this.instanceId = instanceId;\r
88         }\r
89 \r
90         @Override\r
91         public String toString() {\r
92                 return "RequestReferences [requestId=" + requestId + \r
93                                                ", instanceId=" + instanceId + "]";\r
94         }\r
95         \r
96 }\r