com.microsoft.windowsazure.services.servicebus.implementation.MessageCountDetails 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 javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for MessageCountDetails complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="MessageCountDetails">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="ActiveMessageCount" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
* <element name="DeadLetterMessageCount" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
* <element name="ScheduledMessageCount" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
* <element name="TransferMessageCount" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
* <element name="TransferDeadLetterMessageCount" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "MessageCountDetails", namespace = "http://schemas.microsoft.com/netservices/2011/06/servicebus", propOrder = {
"activeMessageCount",
"deadLetterMessageCount",
"scheduledMessageCount",
"transferMessageCount",
"transferDeadLetterMessageCount"
})
public class MessageCountDetails {
@XmlElement(name = "ActiveMessageCount")
protected Long activeMessageCount;
@XmlElement(name = "DeadLetterMessageCount")
protected Long deadLetterMessageCount;
@XmlElement(name = "ScheduledMessageCount")
protected Long scheduledMessageCount;
@XmlElement(name = "TransferMessageCount")
protected Long transferMessageCount;
@XmlElement(name = "TransferDeadLetterMessageCount")
protected Long transferDeadLetterMessageCount;
/**
* Gets the value of the activeMessageCount property.
*
* @return
* possible object is
* {@link Long }
*
*/
public Long getActiveMessageCount() {
return activeMessageCount;
}
/**
* Sets the value of the activeMessageCount property.
*
* @param value
* allowed object is
* {@link Long }
*
*/
public void setActiveMessageCount(Long value) {
this.activeMessageCount = value;
}
/**
* Gets the value of the deadLetterMessageCount property.
*
* @return
* possible object is
* {@link Long }
*
*/
public Long getDeadLetterMessageCount() {
return deadLetterMessageCount;
}
/**
* Sets the value of the deadLetterMessageCount property.
*
* @param value
* allowed object is
* {@link Long }
*
*/
public void setDeadLetterMessageCount(Long value) {
this.deadLetterMessageCount = value;
}
/**
* Gets the value of the scheduledMessageCount property.
*
* @return
* possible object is
* {@link Long }
*
*/
public Long getScheduledMessageCount() {
return scheduledMessageCount;
}
/**
* Sets the value of the scheduledMessageCount property.
*
* @param value
* allowed object is
* {@link Long }
*
*/
public void setScheduledMessageCount(Long value) {
this.scheduledMessageCount = value;
}
/**
* Gets the value of the transferMessageCount property.
*
* @return
* possible object is
* {@link Long }
*
*/
public Long getTransferMessageCount() {
return transferMessageCount;
}
/**
* Sets the value of the transferMessageCount property.
*
* @param value
* allowed object is
* {@link Long }
*
*/
public void setTransferMessageCount(Long value) {
this.transferMessageCount = value;
}
/**
* Gets the value of the transferDeadLetterMessageCount property.
*
* @return
* possible object is
* {@link Long }
*
*/
public Long getTransferDeadLetterMessageCount() {
return transferDeadLetterMessageCount;
}
/**
* Sets the value of the transferDeadLetterMessageCount property.
*
* @param value
* allowed object is
* {@link Long }
*
*/
public void setTransferDeadLetterMessageCount(Long value) {
this.transferDeadLetterMessageCount = value;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy