/* * 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 name="IsValid" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="BrowseNodeLookupRequest" type="{http://webservices.amazon.com/AWSECommerceService/2011-08-01}BrowseNodeLookupRequest" minOccurs="0"/> * <element name="ItemSearchRequest" type="{http://webservices.amazon.com/AWSECommerceService/2011-08-01}ItemSearchRequest" minOccurs="0"/> * <element name="ItemLookupRequest" type="{http://webservices.amazon.com/AWSECommerceService/2011-08-01}ItemLookupRequest" minOccurs="0"/> * <element name="SimilarityLookupRequest" type="{http://webservices.amazon.com/AWSECommerceService/2011-08-01}SimilarityLookupRequest" minOccurs="0"/> * <element name="CartGetRequest" type="{http://webservices.amazon.com/AWSECommerceService/2011-08-01}CartGetRequest" minOccurs="0"/> * <element name="CartAddRequest" type="{http://webservices.amazon.com/AWSECommerceService/2011-08-01}CartAddRequest" minOccurs="0"/> * <element name="CartCreateRequest" type="{http://webservices.amazon.com/AWSECommerceService/2011-08-01}CartCreateRequest" minOccurs="0"/> * <element name="CartModifyRequest" type="{http://webservices.amazon.com/AWSECommerceService/2011-08-01}CartModifyRequest" minOccurs="0"/> * <element name="CartClearRequest" type="{http://webservices.amazon.com/AWSECommerceService/2011-08-01}CartClearRequest" minOccurs="0"/> * <element ref="{http://webservices.amazon.com/AWSECommerceService/2011-08-01}Errors" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "isValid", "browseNodeLookupRequest", "itemSearchRequest", "itemLookupRequest", "similarityLookupRequest", "cartGetRequest", "cartAddRequest", "cartCreateRequest", "cartModifyRequest", "cartClearRequest", "errors" }) @XmlRootElement(name = "Request") public class Request { @XmlElement(name = "IsValid") protected String isValid; @XmlElement(name = "BrowseNodeLookupRequest") protected BrowseNodeLookupRequest browseNodeLookupRequest; @XmlElement(name = "ItemSearchRequest") protected ItemSearchRequest itemSearchRequest; @XmlElement(name = "ItemLookupRequest") protected ItemLookupRequest itemLookupRequest; @XmlElement(name = "SimilarityLookupRequest") protected SimilarityLookupRequest similarityLookupRequest; @XmlElement(name = "CartGetRequest") protected CartGetRequest cartGetRequest; @XmlElement(name = "CartAddRequest") protected CartAddRequest cartAddRequest; @XmlElement(name = "CartCreateRequest") protected CartCreateRequest cartCreateRequest; @XmlElement(name = "CartModifyRequest") protected CartModifyRequest cartModifyRequest; @XmlElement(name = "CartClearRequest") protected CartClearRequest cartClearRequest; @XmlElement(name = "Errors") protected Errors errors; /** * Gets the value of the isValid property. * * @return possible object is {@link String } * */ public String getIsValid() { return isValid; } /** * Sets the value of the isValid property. * * @param value * allowed object is {@link String } * */ public void setIsValid(String value) { this.isValid = value; } /** * Gets the value of the browseNodeLookupRequest property. * * @return possible object is {@link BrowseNodeLookupRequest } * */ public BrowseNodeLookupRequest getBrowseNodeLookupRequest() { return browseNodeLookupRequest; } /** * Sets the value of the browseNodeLookupRequest property. * * @param value * allowed object is {@link BrowseNodeLookupRequest } * */ public void setBrowseNodeLookupRequest(BrowseNodeLookupRequest value) { this.browseNodeLookupRequest = value; } /** * Gets the value of the itemSearchRequest property. * * @return possible object is {@link ItemSearchRequest } * */ public ItemSearchRequest getItemSearchRequest() { return itemSearchRequest; } /** * Sets the value of the itemSearchRequest property. * * @param value * allowed object is {@link ItemSearchRequest } * */ public void setItemSearchRequest(ItemSearchRequest value) { this.itemSearchRequest = value; } /** * Gets the value of the itemLookupRequest property. * * @return possible object is {@link ItemLookupRequest } * */ public ItemLookupRequest getItemLookupRequest() { return itemLookupRequest; } /** * Sets the value of the itemLookupRequest property. * * @param value * allowed object is {@link ItemLookupRequest } * */ public void setItemLookupRequest(ItemLookupRequest value) { this.itemLookupRequest = value; } /** * Gets the value of the similarityLookupRequest property. * * @return possible object is {@link SimilarityLookupRequest } * */ public SimilarityLookupRequest getSimilarityLookupRequest() { return similarityLookupRequest; } /** * Sets the value of the similarityLookupRequest property. * * @param value * allowed object is {@link SimilarityLookupRequest } * */ public void setSimilarityLookupRequest(SimilarityLookupRequest value) { this.similarityLookupRequest = value; } /** * Gets the value of the cartGetRequest property. * * @return possible object is {@link CartGetRequest } * */ public CartGetRequest getCartGetRequest() { return cartGetRequest; } /** * Sets the value of the cartGetRequest property. * * @param value * allowed object is {@link CartGetRequest } * */ public void setCartGetRequest(CartGetRequest value) { this.cartGetRequest = value; } /** * Gets the value of the cartAddRequest property. * * @return possible object is {@link CartAddRequest } * */ public CartAddRequest getCartAddRequest() { return cartAddRequest; } /** * Sets the value of the cartAddRequest property. * * @param value * allowed object is {@link CartAddRequest } * */ public void setCartAddRequest(CartAddRequest value) { this.cartAddRequest = value; } /** * Gets the value of the cartCreateRequest property. * * @return possible object is {@link CartCreateRequest } * */ public CartCreateRequest getCartCreateRequest() { return cartCreateRequest; } /** * Sets the value of the cartCreateRequest property. * * @param value * allowed object is {@link CartCreateRequest } * */ public void setCartCreateRequest(CartCreateRequest value) { this.cartCreateRequest = value; } /** * Gets the value of the cartModifyRequest property. * * @return possible object is {@link CartModifyRequest } * */ public CartModifyRequest getCartModifyRequest() { return cartModifyRequest; } /** * Sets the value of the cartModifyRequest property. * * @param value * allowed object is {@link CartModifyRequest } * */ public void setCartModifyRequest(CartModifyRequest value) { this.cartModifyRequest = value; } /** * Gets the value of the cartClearRequest property. * * @return possible object is {@link CartClearRequest } * */ public CartClearRequest getCartClearRequest() { return cartClearRequest; } /** * Sets the value of the cartClearRequest property. * * @param value * allowed object is {@link CartClearRequest } * */ public void setCartClearRequest(CartClearRequest value) { this.cartClearRequest = 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; } }