com.microsoft.windowsazure.services.servicebus.implementation.Content 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.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for content complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="content">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element ref="{http://schemas.microsoft.com/netservices/2010/10/servicebus/connect}QueueDescription" minOccurs="0"/>
* <element ref="{http://schemas.microsoft.com/netservices/2010/10/servicebus/connect}TopicDescription" minOccurs="0"/>
* <element ref="{http://schemas.microsoft.com/netservices/2010/10/servicebus/connect}SubscriptionDescription" minOccurs="0"/>
* <element ref="{http://schemas.microsoft.com/netservices/2010/10/servicebus/connect}RuleDescription" minOccurs="0"/>
* </sequence>
* <attribute name="type" type="{http://www.w3.org/2001/XMLSchema}string" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "content", namespace = "http://www.w3.org/2005/Atom", propOrder = {
"queueDescription",
"topicDescription",
"subscriptionDescription",
"ruleDescription"
})
public class Content {
@XmlElement(name = "QueueDescription", namespace = "http://schemas.microsoft.com/netservices/2010/10/servicebus/connect")
protected QueueDescription queueDescription;
@XmlElement(name = "TopicDescription", namespace = "http://schemas.microsoft.com/netservices/2010/10/servicebus/connect")
protected TopicDescription topicDescription;
@XmlElement(name = "SubscriptionDescription", namespace = "http://schemas.microsoft.com/netservices/2010/10/servicebus/connect")
protected SubscriptionDescription subscriptionDescription;
@XmlElement(name = "RuleDescription", namespace = "http://schemas.microsoft.com/netservices/2010/10/servicebus/connect")
protected RuleDescription ruleDescription;
@XmlAttribute(name = "type")
protected String type;
/**
* Gets the value of the queueDescription property.
*
* @return
* possible object is
* {@link QueueDescription }
*
*/
public QueueDescription getQueueDescription() {
return queueDescription;
}
/**
* Sets the value of the queueDescription property.
*
* @param value
* allowed object is
* {@link QueueDescription }
*
*/
public void setQueueDescription(QueueDescription value) {
this.queueDescription = value;
}
/**
* Gets the value of the topicDescription property.
*
* @return
* possible object is
* {@link TopicDescription }
*
*/
public TopicDescription getTopicDescription() {
return topicDescription;
}
/**
* Sets the value of the topicDescription property.
*
* @param value
* allowed object is
* {@link TopicDescription }
*
*/
public void setTopicDescription(TopicDescription value) {
this.topicDescription = value;
}
/**
* Gets the value of the subscriptionDescription property.
*
* @return
* possible object is
* {@link SubscriptionDescription }
*
*/
public SubscriptionDescription getSubscriptionDescription() {
return subscriptionDescription;
}
/**
* Sets the value of the subscriptionDescription property.
*
* @param value
* allowed object is
* {@link SubscriptionDescription }
*
*/
public void setSubscriptionDescription(SubscriptionDescription value) {
this.subscriptionDescription = value;
}
/**
* Gets the value of the ruleDescription property.
*
* @return
* possible object is
* {@link RuleDescription }
*
*/
public RuleDescription getRuleDescription() {
return ruleDescription;
}
/**
* Sets the value of the ruleDescription property.
*
* @param value
* allowed object is
* {@link RuleDescription }
*
*/
public void setRuleDescription(RuleDescription value) {
this.ruleDescription = value;
}
/**
* Gets the value of the type property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getType() {
return type;
}
/**
* Sets the value of the type property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setType(String value) {
this.type = value;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy