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