Replaced all tabs with spaces in java and pom.xml
[so.git] / bpmn / mso-infrastructure-bpmn / src / main / java / org / onap / so / bpmn / common / adapter / sdnc / CallbackHeader.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.bpmn.common.adapter.sdnc;
22
23 import javax.xml.bind.annotation.XmlAccessType;
24 import javax.xml.bind.annotation.XmlAccessorType;
25 import javax.xml.bind.annotation.XmlElement;
26 import javax.xml.bind.annotation.XmlRootElement;
27 import javax.xml.bind.annotation.XmlType;
28
29
30 /**
31  * <p>
32  * Java class for anonymous complex type.
33  * 
34  * <p>
35  * The following schema fragment specifies the expected content contained within this class.
36  * 
37  * <pre>
38  * &lt;complexType>
39  *   &lt;complexContent>
40  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
41  *       &lt;sequence>
42  *         &lt;element name="RequestId" type="{http://www.w3.org/2001/XMLSchema}string"/>
43  *         &lt;element name="ResponseCode" type="{http://www.w3.org/2001/XMLSchema}string"/>
44  *         &lt;element name="ResponseMessage" type="{http://www.w3.org/2001/XMLSchema}string"/>
45  *       &lt;/sequence>
46  *     &lt;/restriction>
47  *   &lt;/complexContent>
48  * &lt;/complexType>
49  * </pre>
50  * 
51  * 
52  */
53 @XmlAccessorType(XmlAccessType.FIELD)
54 @XmlType(name = "", propOrder = {"requestId", "responseCode", "responseMessage"},
55         namespace = "http://org.onap/workflow/sdnc/adapter/schema/v1")
56 @XmlRootElement(name = "CallbackHeader")
57 public class CallbackHeader {
58
59     @XmlElement(name = "RequestId", required = true, namespace = "http://org.onap/workflow/sdnc/adapter/schema/v1")
60     protected String requestId;
61     @XmlElement(name = "ResponseCode", required = true, namespace = "http://org.onap/workflow/sdnc/adapter/schema/v1")
62     protected String responseCode;
63     @XmlElement(name = "ResponseMessage", required = true,
64             namespace = "http://org.onap/workflow/sdnc/adapter/schema/v1")
65     protected String responseMessage;
66
67     /**
68      * Gets the value of the requestId property.
69      * 
70      * @return possible object is {@link String }
71      * 
72      */
73     public String getRequestId() {
74         return requestId;
75     }
76
77     /**
78      * Sets the value of the requestId property.
79      * 
80      * @param value allowed object is {@link String }
81      * 
82      */
83     public void setRequestId(String value) {
84         this.requestId = value;
85     }
86
87     /**
88      * Gets the value of the responseCode property.
89      * 
90      * @return possible object is {@link String }
91      * 
92      */
93     public String getResponseCode() {
94         return responseCode;
95     }
96
97     /**
98      * Sets the value of the responseCode property.
99      * 
100      * @param value allowed object is {@link String }
101      * 
102      */
103     public void setResponseCode(String value) {
104         this.responseCode = value;
105     }
106
107     /**
108      * Gets the value of the responseMessage property.
109      * 
110      * @return possible object is {@link String }
111      * 
112      */
113     public String getResponseMessage() {
114         return responseMessage;
115     }
116
117     /**
118      * Sets the value of the responseMessage property.
119      * 
120      * @param value allowed object is {@link String }
121      * 
122      */
123     public void setResponseMessage(String value) {
124         this.responseMessage = value;
125     }
126
127 }