![JAR search and dependency download from the Maven repository](/logo.png)
com.microsoft.windowsazure.services.serviceBus.implementation.SubscriptionDescription Maven / Gradle / Ivy
//
// 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 SubscriptionDescription complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="SubscriptionDescription">
* <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="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="DeadLetteringOnFilterEvaluationExceptions" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="DefaultRuleDescription" type="{http://schemas.microsoft.com/netservices/2010/10/servicebus/connect}RuleDescription" minOccurs="0"/>
* <element name="MessageCount" type="{http://www.w3.org/2001/XMLSchema}long" 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"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SubscriptionDescription", propOrder = {
"lockDuration",
"requiresSession",
"defaultMessageTimeToLive",
"deadLetteringOnMessageExpiration",
"deadLetteringOnFilterEvaluationExceptions",
"defaultRuleDescription",
"messageCount",
"maxDeliveryCount",
"enableBatchedOperations"
})
@XmlRootElement(name = "SubscriptionDescription")
public class SubscriptionDescription {
@XmlElement(name = "LockDuration")
protected Duration lockDuration;
@XmlElement(name = "RequiresSession")
protected Boolean requiresSession;
@XmlElement(name = "DefaultMessageTimeToLive")
protected Duration defaultMessageTimeToLive;
@XmlElement(name = "DeadLetteringOnMessageExpiration")
protected Boolean deadLetteringOnMessageExpiration;
@XmlElement(name = "DeadLetteringOnFilterEvaluationExceptions")
protected Boolean deadLetteringOnFilterEvaluationExceptions;
@XmlElement(name = "DefaultRuleDescription")
protected RuleDescription defaultRuleDescription;
@XmlElement(name = "MessageCount")
protected Long messageCount;
@XmlElement(name = "MaxDeliveryCount")
protected Integer maxDeliveryCount;
@XmlElement(name = "EnableBatchedOperations")
protected Boolean enableBatchedOperations;
/**
* 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 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 deadLetteringOnFilterEvaluationExceptions property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isDeadLetteringOnFilterEvaluationExceptions() {
return deadLetteringOnFilterEvaluationExceptions;
}
/**
* Sets the value of the deadLetteringOnFilterEvaluationExceptions property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setDeadLetteringOnFilterEvaluationExceptions(Boolean value) {
this.deadLetteringOnFilterEvaluationExceptions = value;
}
/**
* Gets the value of the defaultRuleDescription property.
*
* @return
* possible object is
* {@link RuleDescription }
*
*/
public RuleDescription getDefaultRuleDescription() {
return defaultRuleDescription;
}
/**
* Sets the value of the defaultRuleDescription property.
*
* @param value
* allowed object is
* {@link RuleDescription }
*
*/
public void setDefaultRuleDescription(RuleDescription value) {
this.defaultRuleDescription = 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 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;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy