com.microsoft.windowsazure.services.serviceBus.implementation.QueueDescription Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of microsoft-windowsazure-api Show documentation
Show all versions of microsoft-windowsazure-api Show documentation
API for Microsoft Windows Azure Clients
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2013.03.26 at 10:53:39 PM UTC
//
package com.microsoft.windowsazure.services.serviceBus.implementation;
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;
import javax.xml.datatype.Duration;
/**
* Java class for QueueDescription complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="QueueDescription">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="LockDuration" type="{http://schemas.microsoft.com/2003/10/Serialization/}duration" minOccurs="0"/>
* <element name="MaxSizeInMegabytes" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
* <element name="RequiresDuplicateDetection" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="RequiresSession" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="DefaultMessageTimeToLive" type="{http://schemas.microsoft.com/2003/10/Serialization/}duration" minOccurs="0"/>
* <element name="DeadLetteringOnMessageExpiration" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="DuplicateDetectionHistoryTimeWindow" type="{http://schemas.microsoft.com/2003/10/Serialization/}duration" minOccurs="0"/>
* <element name="MaxDeliveryCount" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element name="EnableBatchedOperations" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="SizeInBytes" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
* <element name="MessageCount" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "QueueDescription", propOrder = {
"lockDuration",
"maxSizeInMegabytes",
"requiresDuplicateDetection",
"requiresSession",
"defaultMessageTimeToLive",
"deadLetteringOnMessageExpiration",
"duplicateDetectionHistoryTimeWindow",
"maxDeliveryCount",
"enableBatchedOperations",
"sizeInBytes",
"messageCount"
})
@XmlRootElement(name = "QueueDescription")
public class QueueDescription {
@XmlElement(name = "LockDuration")
protected Duration lockDuration;
@XmlElement(name = "MaxSizeInMegabytes")
protected Long maxSizeInMegabytes;
@XmlElement(name = "RequiresDuplicateDetection")
protected Boolean requiresDuplicateDetection;
@XmlElement(name = "RequiresSession")
protected Boolean requiresSession;
@XmlElement(name = "DefaultMessageTimeToLive")
protected Duration defaultMessageTimeToLive;
@XmlElement(name = "DeadLetteringOnMessageExpiration")
protected Boolean deadLetteringOnMessageExpiration;
@XmlElement(name = "DuplicateDetectionHistoryTimeWindow")
protected Duration duplicateDetectionHistoryTimeWindow;
@XmlElement(name = "MaxDeliveryCount")
protected Integer maxDeliveryCount;
@XmlElement(name = "EnableBatchedOperations")
protected Boolean enableBatchedOperations;
@XmlElement(name = "SizeInBytes")
protected Long sizeInBytes;
@XmlElement(name = "MessageCount")
protected Long messageCount;
/**
* Gets the value of the lockDuration property.
*
* @return
* possible object is
* {@link Duration }
*
*/
public Duration getLockDuration() {
return lockDuration;
}
/**
* Sets the value of the lockDuration property.
*
* @param value
* allowed object is
* {@link Duration }
*
*/
public void setLockDuration(Duration value) {
this.lockDuration = value;
}
/**
* Gets the value of the maxSizeInMegabytes property.
*
* @return
* possible object is
* {@link Long }
*
*/
public Long getMaxSizeInMegabytes() {
return maxSizeInMegabytes;
}
/**
* Sets the value of the maxSizeInMegabytes property.
*
* @param value
* allowed object is
* {@link Long }
*
*/
public void setMaxSizeInMegabytes(Long value) {
this.maxSizeInMegabytes = value;
}
/**
* Gets the value of the requiresDuplicateDetection property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isRequiresDuplicateDetection() {
return requiresDuplicateDetection;
}
/**
* Sets the value of the requiresDuplicateDetection property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setRequiresDuplicateDetection(Boolean value) {
this.requiresDuplicateDetection = value;
}
/**
* Gets the value of the requiresSession property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isRequiresSession() {
return requiresSession;
}
/**
* Sets the value of the requiresSession property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setRequiresSession(Boolean value) {
this.requiresSession = value;
}
/**
* Gets the value of the defaultMessageTimeToLive property.
*
* @return
* possible object is
* {@link Duration }
*
*/
public Duration getDefaultMessageTimeToLive() {
return defaultMessageTimeToLive;
}
/**
* Sets the value of the defaultMessageTimeToLive property.
*
* @param value
* allowed object is
* {@link Duration }
*
*/
public void setDefaultMessageTimeToLive(Duration value) {
this.defaultMessageTimeToLive = value;
}
/**
* Gets the value of the deadLetteringOnMessageExpiration property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isDeadLetteringOnMessageExpiration() {
return deadLetteringOnMessageExpiration;
}
/**
* Sets the value of the deadLetteringOnMessageExpiration property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setDeadLetteringOnMessageExpiration(Boolean value) {
this.deadLetteringOnMessageExpiration = value;
}
/**
* Gets the value of the duplicateDetectionHistoryTimeWindow property.
*
* @return
* possible object is
* {@link Duration }
*
*/
public Duration getDuplicateDetectionHistoryTimeWindow() {
return duplicateDetectionHistoryTimeWindow;
}
/**
* Sets the value of the duplicateDetectionHistoryTimeWindow property.
*
* @param value
* allowed object is
* {@link Duration }
*
*/
public void setDuplicateDetectionHistoryTimeWindow(Duration value) {
this.duplicateDetectionHistoryTimeWindow = value;
}
/**
* Gets the value of the maxDeliveryCount property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getMaxDeliveryCount() {
return maxDeliveryCount;
}
/**
* Sets the value of the maxDeliveryCount property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setMaxDeliveryCount(Integer value) {
this.maxDeliveryCount = value;
}
/**
* Gets the value of the enableBatchedOperations property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isEnableBatchedOperations() {
return enableBatchedOperations;
}
/**
* Sets the value of the enableBatchedOperations property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setEnableBatchedOperations(Boolean value) {
this.enableBatchedOperations = value;
}
/**
* Gets the value of the sizeInBytes property.
*
* @return
* possible object is
* {@link Long }
*
*/
public Long getSizeInBytes() {
return sizeInBytes;
}
/**
* Sets the value of the sizeInBytes property.
*
* @param value
* allowed object is
* {@link Long }
*
*/
public void setSizeInBytes(Long value) {
this.sizeInBytes = value;
}
/**
* Gets the value of the messageCount property.
*
* @return
* possible object is
* {@link Long }
*
*/
public Long getMessageCount() {
return messageCount;
}
/**
* Sets the value of the messageCount property.
*
* @param value
* allowed object is
* {@link Long }
*
*/
public void setMessageCount(Long value) {
this.messageCount = value;
}
}