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

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


public class TopicInfo extends EntryModel<TopicDescription> {
    /**
     * 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

TOP

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

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.