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 * <complexType> 25 * <complexContent> 26 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> 27 * <sequence> 28 * <element name="CustomerId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> 29 * <element name="Name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> 30 * <element name="Nickname" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> 31 * <element name="Location" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> 32 * </sequence> 33 * </restriction> 34 * </complexContent> 35 * </complexType> 36 * </pre> 37 * 38 * 39 */ 40 @XmlAccessorType(XmlAccessType.FIELD) 41 @XmlType(name = "", propOrder = { 42 "customerId", 43 "name", 44 "nickname", 45 "location" 46 }) 47 @XmlRootElement(name = "Reviewer") 48 public class Reviewer { 49 50 @XmlElement(name = "CustomerId") 51 protected String customerId; 52 @XmlElement(name = "Name") 53 protected String name; 54 @XmlElement(name = "Nickname") 55 protected String nickname; 56 @XmlElement(name = "Location") 57 protected String location; 58 59 /** 60 * Gets the value of the customerId property. 61 * 62 * @return 63 * possible object is 64 * {@link String } 65 * 66 */ 67 public String getCustomerId() { 68 return customerId; 69 } 70 71 /** 72 * Sets the value of the customerId property. 73 * 74 * @param value 75 * allowed object is 76 * {@link String } 77 * 78 */ 79 public void setCustomerId(String value) { 80 this.customerId = value; 81 } 82 83 /** 84 * Gets the value of the name property. 85 * 86 * @return 87 * possible object is 88 * {@link String } 89 * 90 */ 91 public String getName() { 92 return name; 93 } 94 95 /** 96 * Sets the value of the name property. 97 * 98 * @param value 99 * allowed object is 100 * {@link String } 101 * 102 */ 103 public void setName(String value) { 104 this.name = value; 105 } 106 107 /** 108 * Gets the value of the nickname property. 109 * 110 * @return 111 * possible object is 112 * {@link String } 113 * 114 */ 115 public String getNickname() { 116 return nickname; 117 } 118 119 /** 120 * Sets the value of the nickname property. 121 * 122 * @param value 123 * allowed object is 124 * {@link String } 125 * 126 */ 127 public void setNickname(String value) { 128 this.nickname = value; 129 } 130 131 /** 132 * Gets the value of the location property. 133 * 134 * @return 135 * possible object is 136 * {@link String } 137 * 138 */ 139 public String getLocation() { 140 return location; 141 } 142 143 /** 144 * Sets the value of the location property. 145 * 146 * @param value 147 * allowed object is 148 * {@link String } 149 * 150 */ 151 public void setLocation(String value) { 152 this.location = value; 153 } 154 155 }