ObjectFactory.java
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.5
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//
package org.apache.cxf.ws.mc.v200702;
import javax.xml.namespace.QName;
import jakarta.xml.bind.JAXBElement;
import jakarta.xml.bind.annotation.XmlElementDecl;
import jakarta.xml.bind.annotation.XmlRegistry;
/**
* This object contains factory methods for each
* Java content interface and Java element interface
* generated in the org.apache.cxf.ws.mc.v200702 package.
* <p>An ObjectFactory allows you to programmatically
* 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 {
private static final QName _MessagePending_QNAME = new QName("http://docs.oasis-open.org/ws-rx/wsmc/200702", "MessagePending");
private static final QName _MakeConnection_QNAME = new QName("http://docs.oasis-open.org/ws-rx/wsmc/200702", "MakeConnection");
private static final QName _UnsupportedElement_QNAME = new QName("http://docs.oasis-open.org/ws-rx/wsmc/200702", "UnsupportedElement");
/**
* Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.apache.cxf.ws.mc.v200702
*
*/
public ObjectFactory() {
}
/**
* Create an instance of {@link MessagePendingType }
*
* @return
* the new instance of {@link MessagePendingType }
*/
public MessagePendingType createMessagePendingType() {
return new MessagePendingType();
}
/**
* Create an instance of {@link Address }
*
* @return
* the new instance of {@link Address }
*/
public Address createAddress() {
return new Address();
}
/**
* Create an instance of {@link MakeConnectionType }
*
* @return
* the new instance of {@link MakeConnectionType }
*/
public MakeConnectionType createMakeConnectionType() {
return new MakeConnectionType();
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link MessagePendingType }{@code >}
*
* @param value
* Java instance representing xml element's value.
* @return
* the new instance of {@link JAXBElement }{@code <}{@link MessagePendingType }{@code >}
*/
@XmlElementDecl(namespace = "http://docs.oasis-open.org/ws-rx/wsmc/200702", name = "MessagePending")
public JAXBElement<MessagePendingType> createMessagePending(MessagePendingType value) {
return new JAXBElement<>(_MessagePending_QNAME, MessagePendingType.class, null, value);
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link MakeConnectionType }{@code >}
*
* @param value
* Java instance representing xml element's value.
* @return
* the new instance of {@link JAXBElement }{@code <}{@link MakeConnectionType }{@code >}
*/
@XmlElementDecl(namespace = "http://docs.oasis-open.org/ws-rx/wsmc/200702", name = "MakeConnection")
public JAXBElement<MakeConnectionType> createMakeConnection(MakeConnectionType value) {
return new JAXBElement<>(_MakeConnection_QNAME, MakeConnectionType.class, null, value);
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link QName }{@code >}
*
* @param value
* Java instance representing xml element's value.
* @return
* the new instance of {@link JAXBElement }{@code <}{@link QName }{@code >}
*/
@XmlElementDecl(namespace = "http://docs.oasis-open.org/ws-rx/wsmc/200702", name = "UnsupportedElement")
public JAXBElement<QName> createUnsupportedElement(QName value) {
return new JAXBElement<>(_UnsupportedElement_QNAME, QName.class, null, value);
}
}