
no.difi.commons.busdox.jaxb.identifiers.ObjectFactory Maven / Gradle / Ivy
Show all versions of commons-busdox Show documentation
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2017.03.23 at 03:08:35 PM UTC
//
package no.difi.commons.busdox.jaxb.identifiers;
import javax.xml.bind.JAXBElement;
import javax.xml.bind.annotation.XmlElementDecl;
import javax.xml.bind.annotation.XmlRegistry;
import javax.xml.namespace.QName;
/**
* This object contains factory methods for each
* Java content interface and Java element interface
* generated in the no.difi.commons.busdox.jaxb.identifiers 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 {
private final static QName _ChannelIdentifier_QNAME = new QName("http://busdox.org/transport/identifiers/1.0/", "ChannelIdentifier");
private final static QName _RecipientIdentifier_QNAME = new QName("http://busdox.org/transport/identifiers/1.0/", "RecipientIdentifier");
private final static QName _ParticipantIdentifier_QNAME = new QName("http://busdox.org/transport/identifiers/1.0/", "ParticipantIdentifier");
private final static QName _DocumentIdentifier_QNAME = new QName("http://busdox.org/transport/identifiers/1.0/", "DocumentIdentifier");
private final static QName _SenderIdentifier_QNAME = new QName("http://busdox.org/transport/identifiers/1.0/", "SenderIdentifier");
private final static QName _ProcessIdentifier_QNAME = new QName("http://busdox.org/transport/identifiers/1.0/", "ProcessIdentifier");
private final static QName _MessageIdentifier_QNAME = new QName("http://busdox.org/transport/identifiers/1.0/", "MessageIdentifier");
/**
* Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: no.difi.commons.busdox.jaxb.identifiers
*
*/
public ObjectFactory() {
}
/**
* Create an instance of {@link ParticipantIdentifierType }
*
*/
public ParticipantIdentifierType createParticipantIdentifierType() {
return new ParticipantIdentifierType();
}
/**
* Create an instance of {@link DocumentIdentifierType }
*
*/
public DocumentIdentifierType createDocumentIdentifierType() {
return new DocumentIdentifierType();
}
/**
* Create an instance of {@link ProcessIdentifierType }
*
*/
public ProcessIdentifierType createProcessIdentifierType() {
return new ProcessIdentifierType();
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}}
*
*/
@XmlElementDecl(namespace = "http://busdox.org/transport/identifiers/1.0/", name = "ChannelIdentifier")
public JAXBElement createChannelIdentifier(String value) {
return new JAXBElement(_ChannelIdentifier_QNAME, String.class, null, value);
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link ParticipantIdentifierType }{@code >}}
*
*/
@XmlElementDecl(namespace = "http://busdox.org/transport/identifiers/1.0/", name = "RecipientIdentifier")
public JAXBElement createRecipientIdentifier(ParticipantIdentifierType value) {
return new JAXBElement(_RecipientIdentifier_QNAME, ParticipantIdentifierType.class, null, value);
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link ParticipantIdentifierType }{@code >}}
*
*/
@XmlElementDecl(namespace = "http://busdox.org/transport/identifiers/1.0/", name = "ParticipantIdentifier")
public JAXBElement createParticipantIdentifier(ParticipantIdentifierType value) {
return new JAXBElement(_ParticipantIdentifier_QNAME, ParticipantIdentifierType.class, null, value);
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link DocumentIdentifierType }{@code >}}
*
*/
@XmlElementDecl(namespace = "http://busdox.org/transport/identifiers/1.0/", name = "DocumentIdentifier")
public JAXBElement createDocumentIdentifier(DocumentIdentifierType value) {
return new JAXBElement(_DocumentIdentifier_QNAME, DocumentIdentifierType.class, null, value);
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link ParticipantIdentifierType }{@code >}}
*
*/
@XmlElementDecl(namespace = "http://busdox.org/transport/identifiers/1.0/", name = "SenderIdentifier")
public JAXBElement createSenderIdentifier(ParticipantIdentifierType value) {
return new JAXBElement(_SenderIdentifier_QNAME, ParticipantIdentifierType.class, null, value);
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link ProcessIdentifierType }{@code >}}
*
*/
@XmlElementDecl(namespace = "http://busdox.org/transport/identifiers/1.0/", name = "ProcessIdentifier")
public JAXBElement createProcessIdentifier(ProcessIdentifierType value) {
return new JAXBElement(_ProcessIdentifier_QNAME, ProcessIdentifierType.class, null, value);
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}}
*
*/
@XmlElementDecl(namespace = "http://busdox.org/transport/identifiers/1.0/", name = "MessageIdentifier")
public JAXBElement createMessageIdentifier(String value) {
return new JAXBElement(_MessageIdentifier_QNAME, String.class, null, value);
}
}