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 java.math.BigInteger;
12  import java.util.ArrayList;
13  import java.util.List;
14  import javax.xml.bind.annotation.XmlAccessType;
15  import javax.xml.bind.annotation.XmlAccessorType;
16  import javax.xml.bind.annotation.XmlElement;
17  import javax.xml.bind.annotation.XmlSchemaType;
18  import javax.xml.bind.annotation.XmlType;
19  
20  
21  /**
22   * <p>Java class for SellerLookupRequest complex type.
23   * 
24   * <p>The following schema fragment specifies the expected content contained within this class.
25   * 
26   * <pre>
27   * &lt;complexType name="SellerLookupRequest">
28   *   &lt;complexContent>
29   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
30   *       &lt;sequence>
31   *         &lt;element name="ResponseGroup" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
32   *         &lt;element name="SellerId" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
33   *         &lt;element name="FeedbackPage" type="{http://www.w3.org/2001/XMLSchema}positiveInteger" minOccurs="0"/>
34   *       &lt;/sequence>
35   *     &lt;/restriction>
36   *   &lt;/complexContent>
37   * &lt;/complexType>
38   * </pre>
39   * 
40   * 
41   */
42  @XmlAccessorType(XmlAccessType.FIELD)
43  @XmlType(name = "SellerLookupRequest", propOrder = {
44      "responseGroup",
45      "sellerId",
46      "feedbackPage"
47  })
48  public class SellerLookupRequest {
49  
50      @XmlElement(name = "ResponseGroup")
51      protected List<String> responseGroup;
52      @XmlElement(name = "SellerId")
53      protected List<String> sellerId;
54      @XmlElement(name = "FeedbackPage")
55      @XmlSchemaType(name = "positiveInteger")
56      protected BigInteger feedbackPage;
57  
58      /**
59       * Gets the value of the responseGroup property.
60       * 
61       * <p>
62       * This accessor method returns a reference to the live list,
63       * not a snapshot. Therefore any modification you make to the
64       * returned list will be present inside the JAXB object.
65       * This is why there is not a <CODE>set</CODE> method for the responseGroup property.
66       * 
67       * <p>
68       * For example, to add a new item, do as follows:
69       * <pre>
70       *    getResponseGroup().add(newItem);
71       * </pre>
72       * 
73       * 
74       * <p>
75       * Objects of the following type(s) are allowed in the list
76       * {@link String }
77       * 
78       * 
79       */
80      public List<String> getResponseGroup() {
81          if (responseGroup == null) {
82              responseGroup = new ArrayList<String>();
83          }
84          return this.responseGroup;
85      }
86  
87      /**
88       * Gets the value of the sellerId property.
89       * 
90       * <p>
91       * This accessor method returns a reference to the live list,
92       * not a snapshot. Therefore any modification you make to the
93       * returned list will be present inside the JAXB object.
94       * This is why there is not a <CODE>set</CODE> method for the sellerId property.
95       * 
96       * <p>
97       * For example, to add a new item, do as follows:
98       * <pre>
99       *    getSellerId().add(newItem);
100      * </pre>
101      * 
102      * 
103      * <p>
104      * Objects of the following type(s) are allowed in the list
105      * {@link String }
106      * 
107      * 
108      */
109     public List<String> getSellerId() {
110         if (sellerId == null) {
111             sellerId = new ArrayList<String>();
112         }
113         return this.sellerId;
114     }
115 
116     /**
117      * Gets the value of the feedbackPage property.
118      * 
119      * @return
120      *     possible object is
121      *     {@link BigInteger }
122      *     
123      */
124     public BigInteger getFeedbackPage() {
125         return feedbackPage;
126     }
127 
128     /**
129      * Sets the value of the feedbackPage property.
130      * 
131      * @param value
132      *     allowed object is
133      *     {@link BigInteger }
134      *     
135      */
136     public void setFeedbackPage(BigInteger value) {
137         this.feedbackPage = value;
138     }
139 
140 }