Initial OpenECOMP MSO commit
[so.git] / bpmn / MSOGammaBPMN / src / main / java / com / att / domain2 / workflow / sdnc / adapter / schema / v1 / SDNCAdapterRequest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * OPENECOMP - MSO
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 com.att.domain2.workflow.sdnc.adapter.schema.v1;
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>Java class for anonymous complex type.
32  * 
33  * <p>The following schema fragment specifies the expected content contained within this class.
34  * 
35  * <pre>
36  * &lt;complexType>
37  *   &lt;complexContent>
38  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
39  *       &lt;sequence>
40  *         &lt;element ref="{http://domain2.att.com/workflow/sdnc/adapter/schema/v1}RequestHeader"/>
41  *         &lt;element name="RequestData" type="{http://www.w3.org/2001/XMLSchema}anyType"/>
42  *       &lt;/sequence>
43  *     &lt;/restriction>
44  *   &lt;/complexContent>
45  * &lt;/complexType>
46  * </pre>
47  * 
48  * 
49  */
50 @XmlAccessorType(XmlAccessType.FIELD)
51 @XmlType(name = "", propOrder = {
52     "requestHeader",
53     "requestData"
54 })
55 @XmlRootElement(name = "SDNCAdapterRequest")
56 public class SDNCAdapterRequest {
57
58     @XmlElement(name = "RequestHeader", required = true)
59     protected RequestHeader requestHeader;
60     @XmlElement(name = "RequestData", required = true)
61     protected Object requestData;
62
63     /**
64      * Gets the value of the requestHeader property.
65      * 
66      * @return
67      *     possible object is
68      *     {@link RequestHeader }
69      *     
70      */
71     public RequestHeader getRequestHeader() {
72         return requestHeader;
73     }
74
75     /**
76      * Sets the value of the requestHeader property.
77      * 
78      * @param value
79      *     allowed object is
80      *     {@link RequestHeader }
81      *     
82      */
83     public void setRequestHeader(RequestHeader value) {
84         this.requestHeader = value;
85     }
86
87     /**
88      * Gets the value of the requestData property.
89      * 
90      * @return
91      *     possible object is
92      *     {@link Object }
93      *     
94      */
95     public Object getRequestData() {
96         return requestData;
97     }
98
99     /**
100      * Sets the value of the requestData property.
101      * 
102      * @param value
103      *     allowed object is
104      *     {@link Object }
105      *     
106      */
107     public void setRequestData(Object value) {
108         this.requestData = value;
109     }
110
111 }