package com.amazonaws.a2s.model;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for ImageSets complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType name="ImageSets">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="MerchantId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element ref="{http://webservices.amazon.com/AWSECommerceService/2007-10-29}ImageSet" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
* Generated by AWS Code Generator
* <p/>
* Thu Jan 10 05:27:59 PST 2008
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ImageSets", propOrder = {
"merchantId",
"imageSet"
})
public class ImageSets {
@XmlElement(name = "MerchantId")
protected String merchantId;
@XmlElement(name = "ImageSet")
protected List<ImageSet> imageSet;
/**
* Gets the value of the merchantId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMerchantId() {
return merchantId;
}
/**
* Sets the value of the merchantId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setMerchantId(String value) {
this.merchantId = value;
}
public boolean isSetMerchantId() {
return (this.merchantId!= null);
}
/**
* Gets the value of the imageSet property.
*
* <p>
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a <CODE>set</CODE> method for the imageSet property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getImageSet().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link ImageSet }
*
*
*/
public List<ImageSet> getImageSet() {
if (imageSet == null) {
imageSet = new ArrayList<ImageSet>();
}
return this.imageSet;
}
public boolean isSetImageSet() {
return ((this.imageSet!= null)&&(!this.imageSet.isEmpty()));
}
public void unsetImageSet() {
this.imageSet = null;
}
/**
* Sets the value of the MerchantId property.
*
* @param value
* @return
* this instance
*/
public ImageSets withMerchantId(String value) {
setMerchantId(value);
return this;
}
/**
* Sets the value of the ImageSet property.
*
* @param values
* @return
* this instance
*/
public ImageSets withImageSet(ImageSet... values) {
for (ImageSet value: values) {
getImageSet().add(value);
}
return this;
}
/**
* Sets the value of the imageSet property.
*
* @param imageSet
* allowed object is
* {@link ImageSet }
*
*/
public void setImageSet(List<ImageSet> imageSet) {
this.imageSet = imageSet;
}
/**
*
* XML fragment representation of this object
*
* @return XML fragment for this object. Name for outer
* tag expected to be set by calling method. This fragment
* returns inner properties representation only
*/
protected String toXMLFragment() {
StringBuffer xml = new StringBuffer();
if (isSetMerchantId()) {
xml.append("<MerchantId>");
xml.append(escapeXML(getMerchantId()));
xml.append("</MerchantId>");
}
java.util.List<ImageSet> imageSetList = getImageSet();
for (ImageSet imageSet : imageSetList) {
xml.append("<ImageSet Category=" + "\"" + escapeXML(imageSet.getCategory()) + "\"" + ">");
xml.append(imageSet.toXMLFragment());
xml.append("</ImageSet>");
}
return xml.toString();
}
/**
*
* Escape XML special characters
*/
private String escapeXML(String string) {
StringBuffer sb = new StringBuffer();
int length = string.length();
for (int i = 0; i < length; ++i) {
char c = string.charAt(i);
switch (c) {
case '&':
sb.append("&");
break;
case '<':
sb.append("<");
break;
case '>':
sb.append(">");
break;
case '\'':
sb.append("'");
break;
case '"':
sb.append(""");
break;
default:
sb.append(c);
}
}
return sb.toString();
}
}
|