All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.microsoft.windowsazure.services.serviceBus.implementation.TopicDescription 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 TopicDescription complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="TopicDescription">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="DefaultMessageTimeToLive" 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="DuplicateDetectionHistoryTimeWindow" type="{http://schemas.microsoft.com/2003/10/Serialization/}duration" 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"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "TopicDescription", propOrder = { "defaultMessageTimeToLive", "maxSizeInMegabytes", "requiresDuplicateDetection", "duplicateDetectionHistoryTimeWindow", "enableBatchedOperations", "sizeInBytes" }) @XmlRootElement(name = "TopicDescription") public class TopicDescription { @XmlElement(name = "DefaultMessageTimeToLive") protected Duration defaultMessageTimeToLive; @XmlElement(name = "MaxSizeInMegabytes") protected Long maxSizeInMegabytes; @XmlElement(name = "RequiresDuplicateDetection") protected Boolean requiresDuplicateDetection; @XmlElement(name = "DuplicateDetectionHistoryTimeWindow") protected Duration duplicateDetectionHistoryTimeWindow; @XmlElement(name = "EnableBatchedOperations") protected Boolean enableBatchedOperations; @XmlElement(name = "SizeInBytes") protected Long sizeInBytes; /** * 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 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 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 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; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy