View Javadoc

1   //
2   // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.1.2-b01-fcs 
3   // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
4   // Any modifications to this file will be lost upon recompilation of the source schema. 
5   // Generated on: 2007.04.05 at 10:47:13 AM CEST 
6   //
7   
8   
9   package com.amazon.webservices.awsecommerceservice._2007_04_04;
10  
11  import javax.xml.bind.annotation.XmlAccessType;
12  import javax.xml.bind.annotation.XmlAccessorType;
13  import javax.xml.bind.annotation.XmlElement;
14  import javax.xml.bind.annotation.XmlRootElement;
15  import javax.xml.bind.annotation.XmlType;
16  
17  
18  /**
19   * <p>Java class for anonymous complex type.
20   * 
21   * <p>The following schema fragment specifies the expected content contained within this class.
22   * 
23   * <pre>
24   * &lt;complexType>
25   *   &lt;complexContent>
26   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
27   *       &lt;sequence>
28   *         &lt;element ref="{http://webservices.amazon.com/AWSECommerceService/2007-04-04}HTTPHeaders" minOccurs="0"/>
29   *         &lt;element name="RequestId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
30   *         &lt;element ref="{http://webservices.amazon.com/AWSECommerceService/2007-04-04}Arguments" minOccurs="0"/>
31   *         &lt;element ref="{http://webservices.amazon.com/AWSECommerceService/2007-04-04}Errors" minOccurs="0"/>
32   *         &lt;element name="RequestProcessingTime" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
33   *       &lt;/sequence>
34   *     &lt;/restriction>
35   *   &lt;/complexContent>
36   * &lt;/complexType>
37   * </pre>
38   * 
39   * 
40   */
41  @XmlAccessorType(XmlAccessType.FIELD)
42  @XmlType(name = "", propOrder = {
43      "httpHeaders",
44      "requestId",
45      "arguments",
46      "errors",
47      "requestProcessingTime"
48  })
49  @XmlRootElement(name = "OperationRequest")
50  public class OperationRequest {
51  
52      @XmlElement(name = "HTTPHeaders")
53      protected HTTPHeaders httpHeaders;
54      @XmlElement(name = "RequestId")
55      protected String requestId;
56      @XmlElement(name = "Arguments")
57      protected Arguments arguments;
58      @XmlElement(name = "Errors")
59      protected Errors errors;
60      @XmlElement(name = "RequestProcessingTime")
61      protected Float requestProcessingTime;
62  
63      /**
64       * Gets the value of the httpHeaders property.
65       * 
66       * @return
67       *     possible object is
68       *     {@link HTTPHeaders }
69       *     
70       */
71      public HTTPHeaders getHTTPHeaders() {
72          return httpHeaders;
73      }
74  
75      /**
76       * Sets the value of the httpHeaders property.
77       * 
78       * @param value
79       *     allowed object is
80       *     {@link HTTPHeaders }
81       *     
82       */
83      public void setHTTPHeaders(HTTPHeaders value) {
84          this.httpHeaders = value;
85      }
86  
87      /**
88       * Gets the value of the requestId property.
89       * 
90       * @return
91       *     possible object is
92       *     {@link String }
93       *     
94       */
95      public String getRequestId() {
96          return requestId;
97      }
98  
99      /**
100      * Sets the value of the requestId property.
101      * 
102      * @param value
103      *     allowed object is
104      *     {@link String }
105      *     
106      */
107     public void setRequestId(String value) {
108         this.requestId = value;
109     }
110 
111     /**
112      * Gets the value of the arguments property.
113      * 
114      * @return
115      *     possible object is
116      *     {@link Arguments }
117      *     
118      */
119     public Arguments getArguments() {
120         return arguments;
121     }
122 
123     /**
124      * Sets the value of the arguments property.
125      * 
126      * @param value
127      *     allowed object is
128      *     {@link Arguments }
129      *     
130      */
131     public void setArguments(Arguments value) {
132         this.arguments = value;
133     }
134 
135     /**
136      * Gets the value of the errors property.
137      * 
138      * @return
139      *     possible object is
140      *     {@link Errors }
141      *     
142      */
143     public Errors getErrors() {
144         return errors;
145     }
146 
147     /**
148      * Sets the value of the errors property.
149      * 
150      * @param value
151      *     allowed object is
152      *     {@link Errors }
153      *     
154      */
155     public void setErrors(Errors value) {
156         this.errors = value;
157     }
158 
159     /**
160      * Gets the value of the requestProcessingTime property.
161      * 
162      * @return
163      *     possible object is
164      *     {@link Float }
165      *     
166      */
167     public Float getRequestProcessingTime() {
168         return requestProcessingTime;
169     }
170 
171     /**
172      * Sets the value of the requestProcessingTime property.
173      * 
174      * @param value
175      *     allowed object is
176      *     {@link Float }
177      *     
178      */
179     public void setRequestProcessingTime(Float value) {
180         this.requestProcessingTime = value;
181     }
182 
183 }