
com.microsoft.windowsazure.services.servicebus.implementation.EventHubDescription Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-servicebus Show documentation
Show all versions of azure-servicebus Show documentation
Java library for Azure Service Bus
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2016.08.05 at 11:59:21 AM 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;
/**
* Java class for EventHubDescripiton complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="EventHubDescripiton">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="PartitionCount" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element name="DefaultMessageRetention" type="{http://www.w3.org/2001/XMLSchema}long" 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="Status" type="{http://schemas.microsoft.com/netservices/2010/10/servicebus/connect}EntityStatus" minOccurs="0"/>
* <element name="UserMetadata" type="{http://www.w3.org/2001/XMLSchema}string" 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 = "EventHubDescripiton", propOrder = {
"partitionCount",
"defaultMessageRetention",
"createdAt",
"updatedAt",
"accessedAt",
"status",
"userMetadata",
"entityAvailabilityStatus"
})
@XmlRootElement(name = "EventHubDescription")
public class EventHubDescription {
@XmlElement(name = "PartitionCount")
protected Integer partitionCount;
@XmlElement(name = "DefaultMessageRetention")
protected Long defaultMessageRetention;
@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 = "Status")
protected EntityStatus status;
@XmlElement(name = "UserMetadata")
protected String userMetadata;
@XmlElement(name = "EntityAvailabilityStatus")
protected EntityAvailabilityStatus entityAvailabilityStatus;
/**
* Gets the value of the partitionCount property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getPartitionCount() {
return partitionCount;
}
/**
* Sets the value of the partitionCount property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setPartitionCount(Integer value) {
this.partitionCount = value;
}
/**
* Gets the value of the defaultMessageRetention property.
*
* @return
* possible object is
* {@link Long }
*
*/
public Long getDefaultMessageRetention() {
return defaultMessageRetention;
}
/**
* Sets the value of the defaultMessageRetention property.
*
* @param value
* allowed object is
* {@link Long }
*
*/
public void setDefaultMessageRetention(Long value) {
this.defaultMessageRetention = 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 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 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 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 - 2025 Weber Informatics LLC | Privacy Policy