eu.toop.connector.api.simulator.ObjectFactory Maven / Gradle / Ivy
package eu.toop.connector.api.simulator;
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.simulator 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 _CountryAwareServiceMetadataList_QNAME = new QName("urn:eu.toop/toop-simulator-ng/2020/05/discovery", "CountryAwareServiceMetadataList");
/**
* Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: eu.toop.connector.api.simulator
*
*/
public ObjectFactory() {
}
/**
* Create an instance of {@link CountryAwareServiceMetadataListType }
*
* @return
* The created CountryAwareServiceMetadataListType object and never null
.
*/
@Nonnull
public CountryAwareServiceMetadataListType createCountryAwareServiceMetadataListType() {
return new CountryAwareServiceMetadataListType();
}
/**
* Create an instance of {@link CountryAwareServiceMetadataType }
*
* @return
* The created CountryAwareServiceMetadataType object and never null
.
*/
@Nonnull
public CountryAwareServiceMetadataType createCountryAwareServiceMetadataType() {
return new CountryAwareServiceMetadataType();
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link CountryAwareServiceMetadataListType }{@code >}
*
* @param value
* Java instance representing xml element's value.
* @return
* the new instance of {@link JAXBElement }{@code <}{@link CountryAwareServiceMetadataListType }{@code >} The created JAXBElement and never null
.
*/
@XmlElementDecl(namespace = "urn:eu.toop/toop-simulator-ng/2020/05/discovery", name = "CountryAwareServiceMetadataList")
@Nonnull
public JAXBElement createCountryAwareServiceMetadataList(
@Nullable
final CountryAwareServiceMetadataListType value) {
return new JAXBElement(_CountryAwareServiceMetadataList_QNAME, CountryAwareServiceMetadataListType.class, null, value);
}
}