com.xerox.amazonws.typica.sqs2.jaxb.ReceiveMessage Maven / Gradle / Ivy
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.1-b02-fcs
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2010.10.06 at 09:30:15 PM CEST
//
package com.xerox.amazonws.typica.sqs2.jaxb;
import java.math.BigInteger;
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.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="MaxNumberOfMessages" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
* <element name="VisibilityTimeout" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
* <element name="AttributeName" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
* <element name="Unused" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"maxNumberOfMessages",
"visibilityTimeout",
"attributeNames",
"unused"
})
@XmlRootElement(name = "ReceiveMessage")
public class ReceiveMessage {
@XmlElement(name = "MaxNumberOfMessages")
protected BigInteger maxNumberOfMessages;
@XmlElement(name = "VisibilityTimeout")
protected BigInteger visibilityTimeout;
@XmlElement(name = "AttributeName")
protected List attributeNames;
@XmlElement(name = "Unused")
protected String unused;
/**
* Gets the value of the maxNumberOfMessages property.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public BigInteger getMaxNumberOfMessages() {
return maxNumberOfMessages;
}
/**
* Sets the value of the maxNumberOfMessages property.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setMaxNumberOfMessages(BigInteger value) {
this.maxNumberOfMessages = value;
}
/**
* Gets the value of the visibilityTimeout property.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public BigInteger getVisibilityTimeout() {
return visibilityTimeout;
}
/**
* Sets the value of the visibilityTimeout property.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setVisibilityTimeout(BigInteger value) {
this.visibilityTimeout = value;
}
/**
* Gets the value of the attributeNames property.
*
*
* 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 set
method for the attributeNames property.
*
*
* For example, to add a new item, do as follows:
*
* getAttributeNames().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link String }
*
*
*/
public List getAttributeNames() {
if (attributeNames == null) {
attributeNames = new ArrayList();
}
return this.attributeNames;
}
/**
* Gets the value of the unused property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getUnused() {
return unused;
}
/**
* Sets the value of the unused property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setUnused(String value) {
this.unused = value;
}
}