Package com.microsoft.windowsazure.services.servicebus.implementation

Examples of com.microsoft.windowsazure.services.servicebus.implementation.Content


    /**
     * Creates an instance of the <code>TopicInfo</code> class.
     */
    public TopicInfo() {
        super(new Entry(), new TopicDescription());
        getEntry().setContent(new Content());
        getEntry().getContent().setType(MediaType.APPLICATION_XML);
        getEntry().getContent().setTopicDescription(getModel());
    }
View Full Code Here


    /**
     * Creates an instance of the <code>RuleInfo</code> class.
     */
    public RuleInfo() {
        super(new Entry(), new RuleDescription());
        getEntry().setContent(new Content());
        getEntry().getContent().setType(MediaType.APPLICATION_XML);
        getEntry().getContent().setRuleDescription(getModel());
    }
View Full Code Here

    /**
     * Creates an instance of the <code>SubscriptionInfo</code> class.
     */
    public SubscriptionInfo() {
        super(new Entry(), new SubscriptionDescription());
        getEntry().setContent(new Content());
        getEntry().getContent().setType(MediaType.APPLICATION_XML);
        getEntry().getContent().setSubscriptionDescription(getModel());
    }
View Full Code Here

    /**
     * Creates an instance of the <code>QueueInfo</code> class.
     */
    public QueueInfo() {
        super(new Entry(), new QueueDescription());
        getEntry().setContent(new Content());
        getEntry().getContent().setType(MediaType.APPLICATION_XML);
        getEntry().getContent().setQueueDescription(getModel());
    }
View Full Code Here

TOP

Related Classes of com.microsoft.windowsazure.services.servicebus.implementation.Content

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.