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-azure-api-servicebus Show documentation
Show all versions of microsoft-azure-api-servicebus Show documentation
Microsoft Azure Service Bus SDK Clients
The newest version!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.6
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2014.05.07 at 03:44:57 PM PDT
//
package com.microsoft.windowsazure.services.servicebus.implementation;
import java.util.Calendar;
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.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
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"/>
* <element name="IsAnonymousAccessible" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="Status" type="{http://schemas.microsoft.com/netservices/2010/10/servicebus/connect}EntityStatus" minOccurs="0"/>
* <element name="ForwardTo" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="CreatedAt" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
* <element name="UpdatedAt" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
* <element name="AccessedAt" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
* <element name="UserMetadata" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="SupportOrdering" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="CountDetails" type="{http://schemas.microsoft.com/netservices/2011/06/servicebus}MessageCountDetails" minOccurs="0"/>
* <element name="AutoDeleteOnIdle" type="{http://schemas.microsoft.com/2003/10/Serialization/}duration" minOccurs="0"/>
* <element name="PartitioningPolicy" type="{http://schemas.microsoft.com/netservices/2010/10/servicebus/connect}PartitioningPolicy" minOccurs="0"/>
* <element name="EntityAvailabilityStatus" type="{http://schemas.microsoft.com/netservices/2010/10/servicebus/connect}EntityAvailabilityStatus" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "QueueDescription", propOrder = {
"lockDuration",
"maxSizeInMegabytes",
"requiresDuplicateDetection",
"requiresSession",
"defaultMessageTimeToLive",
"deadLetteringOnMessageExpiration",
"duplicateDetectionHistoryTimeWindow",
"maxDeliveryCount",
"enableBatchedOperations",
"sizeInBytes",
"messageCount",
"isAnonymousAccessible",
"status",
"forwardTo",
"createdAt",
"updatedAt",
"accessedAt",
"userMetadata",
"supportOrdering",
"countDetails",
"autoDeleteOnIdle",
"partitioningPolicy",
"entityAvailabilityStatus"
})
@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;
@XmlElement(name = "IsAnonymousAccessible")
protected Boolean isAnonymousAccessible;
@XmlElement(name = "Status")
protected EntityStatus status;
@XmlElement(name = "ForwardTo")
protected String forwardTo;
@XmlElement(name = "CreatedAt", type = String.class)
@XmlJavaTypeAdapter(Adapter1 .class)
@XmlSchemaType(name = "dateTime")
protected Calendar createdAt;
@XmlElement(name = "UpdatedAt", type = String.class)
@XmlJavaTypeAdapter(Adapter1 .class)
@XmlSchemaType(name = "dateTime")
protected Calendar updatedAt;
@XmlElement(name = "AccessedAt", type = String.class)
@XmlJavaTypeAdapter(Adapter1 .class)
@XmlSchemaType(name = "dateTime")
protected Calendar accessedAt;
@XmlElement(name = "UserMetadata")
protected String userMetadata;
@XmlElement(name = "SupportOrdering")
protected Boolean supportOrdering;
@XmlElement(name = "CountDetails")
protected MessageCountDetails countDetails;
@XmlElement(name = "AutoDeleteOnIdle")
protected Duration autoDeleteOnIdle;
@XmlElement(name = "PartitioningPolicy")
protected PartitioningPolicy partitioningPolicy;
@XmlElement(name = "EntityAvailabilityStatus")
protected EntityAvailabilityStatus entityAvailabilityStatus;
/**
* 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;
}
/**
* Gets the value of the isAnonymousAccessible property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isIsAnonymousAccessible() {
return isAnonymousAccessible;
}
/**
* Sets the value of the isAnonymousAccessible property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setIsAnonymousAccessible(Boolean value) {
this.isAnonymousAccessible = value;
}
/**
* Gets the value of the status property.
*
* @return
* possible object is
* {@link EntityStatus }
*
*/
public EntityStatus getStatus() {
return status;
}
/**
* Sets the value of the status property.
*
* @param value
* allowed object is
* {@link EntityStatus }
*
*/
public void setStatus(EntityStatus value) {
this.status = value;
}
/**
* Gets the value of the forwardTo property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getForwardTo() {
return forwardTo;
}
/**
* Sets the value of the forwardTo property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setForwardTo(String value) {
this.forwardTo = value;
}
/**
* Gets the value of the createdAt property.
*
* @return
* possible object is
* {@link String }
*
*/
public Calendar getCreatedAt() {
return createdAt;
}
/**
* Sets the value of the createdAt property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCreatedAt(Calendar value) {
this.createdAt = value;
}
/**
* Gets the value of the updatedAt property.
*
* @return
* possible object is
* {@link String }
*
*/
public Calendar getUpdatedAt() {
return updatedAt;
}
/**
* Sets the value of the updatedAt property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setUpdatedAt(Calendar value) {
this.updatedAt = value;
}
/**
* Gets the value of the accessedAt property.
*
* @return
* possible object is
* {@link String }
*
*/
public Calendar getAccessedAt() {
return accessedAt;
}
/**
* Sets the value of the accessedAt property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAccessedAt(Calendar value) {
this.accessedAt = value;
}
/**
* Gets the value of the userMetadata property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getUserMetadata() {
return userMetadata;
}
/**
* Sets the value of the userMetadata property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setUserMetadata(String value) {
this.userMetadata = value;
}
/**
* Gets the value of the supportOrdering property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isSupportOrdering() {
return supportOrdering;
}
/**
* Sets the value of the supportOrdering property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setSupportOrdering(Boolean value) {
this.supportOrdering = value;
}
/**
* Gets the value of the countDetails property.
*
* @return
* possible object is
* {@link MessageCountDetails }
*
*/
public MessageCountDetails getCountDetails() {
return countDetails;
}
/**
* Sets the value of the countDetails property.
*
* @param value
* allowed object is
* {@link MessageCountDetails }
*
*/
public void setCountDetails(MessageCountDetails value) {
this.countDetails = value;
}
/**
* Gets the value of the autoDeleteOnIdle property.
*
* @return
* possible object is
* {@link Duration }
*
*/
public Duration getAutoDeleteOnIdle() {
return autoDeleteOnIdle;
}
/**
* Sets the value of the autoDeleteOnIdle property.
*
* @param value
* allowed object is
* {@link Duration }
*
*/
public void setAutoDeleteOnIdle(Duration value) {
this.autoDeleteOnIdle = value;
}
/**
* Gets the value of the partitioningPolicy property.
*
* @return
* possible object is
* {@link PartitioningPolicy }
*
*/
public PartitioningPolicy getPartitioningPolicy() {
return partitioningPolicy;
}
/**
* Sets the value of the partitioningPolicy property.
*
* @param value
* allowed object is
* {@link PartitioningPolicy }
*
*/
public void setPartitioningPolicy(PartitioningPolicy value) {
this.partitioningPolicy = value;
}
/**
* Gets the value of the entityAvailabilityStatus property.
*
* @return
* possible object is
* {@link EntityAvailabilityStatus }
*
*/
public EntityAvailabilityStatus getEntityAvailabilityStatus() {
return entityAvailabilityStatus;
}
/**
* Sets the value of the entityAvailabilityStatus property.
*
* @param value
* allowed object is
* {@link EntityAvailabilityStatus }
*
*/
public void setEntityAvailabilityStatus(EntityAvailabilityStatus value) {
this.entityAvailabilityStatus = value;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy