/* * Copyright (C) 2011 Toshiaki Maki <makingx@gmail.com> * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package am.ik.aws.apa.jaxws; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p> * Java class for anonymous complex type. * * <p> * The following schema fragment specifies the expected content contained within * this class. * * <pre> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element ref="{http://webservices.amazon.com/AWSECommerceService/2011-08-01}HTTPHeaders" minOccurs="0"/> * <element name="RequestId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element ref="{http://webservices.amazon.com/AWSECommerceService/2011-08-01}Arguments" minOccurs="0"/> * <element ref="{http://webservices.amazon.com/AWSECommerceService/2011-08-01}Errors" minOccurs="0"/> * <element name="RequestProcessingTime" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "httpHeaders", "requestId", "arguments", "errors", "requestProcessingTime" }) @XmlRootElement(name = "OperationRequest") public class OperationRequest { @XmlElement(name = "HTTPHeaders") protected HTTPHeaders httpHeaders; @XmlElement(name = "RequestId") protected String requestId; @XmlElement(name = "Arguments") protected Arguments arguments; @XmlElement(name = "Errors") protected Errors errors; @XmlElement(name = "RequestProcessingTime") protected Float requestProcessingTime; /** * Gets the value of the httpHeaders property. * * @return possible object is {@link HTTPHeaders } * */ public HTTPHeaders getHTTPHeaders() { return httpHeaders; } /** * Sets the value of the httpHeaders property. * * @param value * allowed object is {@link HTTPHeaders } * */ public void setHTTPHeaders(HTTPHeaders value) { this.httpHeaders = value; } /** * Gets the value of the requestId property. * * @return possible object is {@link String } * */ public String getRequestId() { return requestId; } /** * Sets the value of the requestId property. * * @param value * allowed object is {@link String } * */ public void setRequestId(String value) { this.requestId = value; } /** * Gets the value of the arguments property. * * @return possible object is {@link Arguments } * */ public Arguments getArguments() { return arguments; } /** * Sets the value of the arguments property. * * @param value * allowed object is {@link Arguments } * */ public void setArguments(Arguments value) { this.arguments = value; } /** * Gets the value of the errors property. * * @return possible object is {@link Errors } * */ public Errors getErrors() { return errors; } /** * Sets the value of the errors property. * * @param value * allowed object is {@link Errors } * */ public void setErrors(Errors value) { this.errors = value; } /** * Gets the value of the requestProcessingTime property. * * @return possible object is {@link Float } * */ public Float getRequestProcessingTime() { return requestProcessingTime; } /** * Sets the value of the requestProcessingTime property. * * @param value * allowed object is {@link Float } * */ public void setRequestProcessingTime(Float value) { this.requestProcessingTime = value; } }