All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jabber.component.connect.ObjectFactory Maven / Gradle / Ivy

The newest version!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.2-146 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2010.06.09 at 04:25:12 AM BST 
//


package jabber.component.connect;

import javax.xml.bind.JAXBElement;
import javax.xml.bind.annotation.XmlElementDecl;
import javax.xml.bind.annotation.XmlRegistry;
import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.namespace.QName;
import uk.org.retep.xmpp.message.impl.AbstractObjectFactory;


/**
 * This object contains factory methods for each 
 * Java content interface and Java element interface 
 * generated in the jabber.component.connect package. 
 * 

An ObjectFactory allows you to programatically * construct new instances of the Java representation * for XML content. The Java representation of XML * content can consist of schema derived interfaces * and classes representing the binding of schema * type definitions, element declarations and model * groups. Factory methods for each of these are * provided in this class. * */ @XmlRegistry public class ObjectFactory extends AbstractObjectFactory { private final static QName _Handshake_QNAME = new QName("jabber:component:connect", "handshake"); private final static QName _Show_QNAME = new QName("jabber:component:connect", "show"); private final static QName _Thread_QNAME = new QName("jabber:component:connect", "thread"); private final static QName _Priority_QNAME = new QName("jabber:component:connect", "priority"); /** * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: jabber.component.connect * */ public ObjectFactory() { } /** * Create an instance of {@link Presence } * */ public Presence createPresence() { return new Presence(); } /** * Create an instance of {@link Error } * */ public Error createError() { return new Error(); } /** * Create an instance of {@link Subject } * */ public Subject createSubject() { return new Subject(); } /** * Create an instance of {@link Status } * */ public Status createStatus() { return new Status(); } /** * Create an instance of {@link Body } * */ public Body createBody() { return new Body(); } /** * Create an instance of {@link Iq } * */ public Iq createIq() { return new Iq(); } /** * Create an instance of {@link Message } * */ public Message createMessage() { return new Message(); } /** * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} * */ @XmlElementDecl(namespace = "jabber:component:connect", name = "handshake") public JAXBElement createHandshake(String value) { return new JAXBElement(_Handshake_QNAME, String.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} * */ @XmlElementDecl(namespace = "jabber:component:connect", name = "show") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) public JAXBElement createShow(String value) { return new JAXBElement(_Show_QNAME, String.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} * */ @XmlElementDecl(namespace = "jabber:component:connect", name = "thread") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) public JAXBElement createThread(String value) { return new JAXBElement(_Thread_QNAME, String.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link Integer }{@code >}} * */ @XmlElementDecl(namespace = "jabber:component:connect", name = "priority") public JAXBElement createPriority(Integer value) { return new JAXBElement(_Priority_QNAME, Integer.class, null, value); } // ========== Start of injected source ========== // ========== End of injected source ========== }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy