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

com.microsoft.windowsazure.services.servicebus.implementation.TopicDescription Maven / Gradle / Ivy

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 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"/>
 *         <element name="FilteringMessagesBeforePublishing" type="{http://www.w3.org/2001/XMLSchema}boolean" 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="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="SubscriptionCount" type="{http://www.w3.org/2001/XMLSchema}int" 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 = "TopicDescription", propOrder = { "defaultMessageTimeToLive", "maxSizeInMegabytes", "requiresDuplicateDetection", "duplicateDetectionHistoryTimeWindow", "enableBatchedOperations", "sizeInBytes", "filteringMessagesBeforePublishing", "isAnonymousAccessible", "status", "createdAt", "updatedAt", "accessedAt", "userMetadata", "supportOrdering", "subscriptionCount", "countDetails", "autoDeleteOnIdle", "partitioningPolicy", "entityAvailabilityStatus" }) @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; @XmlElement(name = "FilteringMessagesBeforePublishing") protected Boolean filteringMessagesBeforePublishing; @XmlElement(name = "IsAnonymousAccessible") protected Boolean isAnonymousAccessible; @XmlElement(name = "Status") protected EntityStatus status; @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 = "SubscriptionCount") protected Integer subscriptionCount; @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 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; } /** * Gets the value of the filteringMessagesBeforePublishing property. * * @return * possible object is * {@link Boolean } * */ public Boolean isFilteringMessagesBeforePublishing() { return filteringMessagesBeforePublishing; } /** * Sets the value of the filteringMessagesBeforePublishing property. * * @param value * allowed object is * {@link Boolean } * */ public void setFilteringMessagesBeforePublishing(Boolean value) { this.filteringMessagesBeforePublishing = 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 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 subscriptionCount property. * * @return * possible object is * {@link Integer } * */ public Integer getSubscriptionCount() { return subscriptionCount; } /** * Sets the value of the subscriptionCount property. * * @param value * allowed object is * {@link Integer } * */ public void setSubscriptionCount(Integer value) { this.subscriptionCount = 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