eu.toop.connector.api.rest.ObjectFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tc-api Show documentation
Show all versions of tc-api Show documentation
Contains the TOOP Connector shared API
package eu.toop.connector.api.rest;
import javax.annotation.Nonnull;
import javax.annotation.Nullable;
import javax.xml.bind.JAXBElement;
import javax.xml.bind.annotation.XmlElementDecl;
import javax.xml.bind.annotation.XmlRegistry;
import javax.xml.namespace.QName;
import com.helger.commons.annotation.CodingStyleguideUnaware;
/**
* This object contains factory methods for each
* Java content interface and Java element interface
* generated in the eu.toop.connector.api.rest 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.
This class was annotated by ph-jaxb22-plugin -Xph-annotate
*
*
*/
@XmlRegistry
@CodingStyleguideUnaware
public class ObjectFactory {
public final static QName _OutgoingMessage_QNAME = new QName("urn:eu.toop/toop-connector-ng/2020/05/", "OutgoingMessage");
public final static QName _IncomingMessage_QNAME = new QName("urn:eu.toop/toop-connector-ng/2020/05/", "IncomingMessage");
/**
* Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: eu.toop.connector.api.rest
*
*/
public ObjectFactory() {
}
/**
* Create an instance of {@link TCOutgoingMessage }
*
* @return
* The created TCOutgoingMessage object and never null
.
*/
@Nonnull
public TCOutgoingMessage createTCOutgoingMessage() {
return new TCOutgoingMessage();
}
/**
* Create an instance of {@link TCIncomingMessage }
*
* @return
* The created TCIncomingMessage object and never null
.
*/
@Nonnull
public TCIncomingMessage createTCIncomingMessage() {
return new TCIncomingMessage();
}
/**
* Create an instance of {@link TCIdentifierType }
*
* @return
* The created TCIdentifierType object and never null
.
*/
@Nonnull
public TCIdentifierType createTCIdentifierType() {
return new TCIdentifierType();
}
/**
* Create an instance of {@link TCPayload }
*
* @return
* The created TCPayload object and never null
.
*/
@Nonnull
public TCPayload createTCPayload() {
return new TCPayload();
}
/**
* Create an instance of {@link TCOutgoingMetadata }
*
* @return
* The created TCOutgoingMetadata object and never null
.
*/
@Nonnull
public TCOutgoingMetadata createTCOutgoingMetadata() {
return new TCOutgoingMetadata();
}
/**
* Create an instance of {@link TCIncomingMetadata }
*
* @return
* The created TCIncomingMetadata object and never null
.
*/
@Nonnull
public TCIncomingMetadata createTCIncomingMetadata() {
return new TCIncomingMetadata();
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link TCOutgoingMessage }{@code >}
*
* @param value
* Java instance representing xml element's value.
* @return
* the new instance of {@link JAXBElement }{@code <}{@link TCOutgoingMessage }{@code >} The created JAXBElement and never null
.
*/
@XmlElementDecl(namespace = "urn:eu.toop/toop-connector-ng/2020/05/", name = "OutgoingMessage")
@Nonnull
public JAXBElement createOutgoingMessage(
@Nullable
final TCOutgoingMessage value) {
return new JAXBElement(_OutgoingMessage_QNAME, TCOutgoingMessage.class, null, value);
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link TCIncomingMessage }{@code >}
*
* @param value
* Java instance representing xml element's value.
* @return
* the new instance of {@link JAXBElement }{@code <}{@link TCIncomingMessage }{@code >} The created JAXBElement and never null
.
*/
@XmlElementDecl(namespace = "urn:eu.toop/toop-connector-ng/2020/05/", name = "IncomingMessage")
@Nonnull
public JAXBElement createIncomingMessage(
@Nullable
final TCIncomingMessage value) {
return new JAXBElement(_IncomingMessage_QNAME, TCIncomingMessage.class, null, value);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy