cz.nic.xml.epp.enumval_1.ObjectFactory Maven / Gradle / Ivy
Show all versions of fred-client Show documentation
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.2
// See https://javaee.github.io/jaxb-v2/
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2021.12.21 at 12:01:05 PM CET
//
package cz.nic.xml.epp.enumval_1;
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 cz.nic.xml.epp.enumval_1 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 _Create_QNAME = new QName("http://www.nic.cz/xml/epp/enumval-1.2", "create");
private final static QName _Update_QNAME = new QName("http://www.nic.cz/xml/epp/enumval-1.2", "update");
private final static QName _Renew_QNAME = new QName("http://www.nic.cz/xml/epp/enumval-1.2", "renew");
private final static QName _InfData_QNAME = new QName("http://www.nic.cz/xml/epp/enumval-1.2", "infData");
private final static QName _ImpendingValExpData_QNAME = new QName("http://www.nic.cz/xml/epp/enumval-1.2", "impendingValExpData");
private final static QName _ValExpData_QNAME = new QName("http://www.nic.cz/xml/epp/enumval-1.2", "valExpData");
/**
* Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: cz.nic.xml.epp.enumval_1
*
*/
public ObjectFactory() {
}
/**
* Create an instance of {@link ExValType }
*
*/
public ExValType createExValType() {
return new ExValType();
}
/**
* Create an instance of {@link UpdateType }
*
*/
public UpdateType createUpdateType() {
return new UpdateType();
}
/**
* Create an instance of {@link ImpendingValExpDataT }
*
*/
public ImpendingValExpDataT createImpendingValExpDataT() {
return new ImpendingValExpDataT();
}
/**
* Create an instance of {@link ValExpDataT }
*
*/
public ValExpDataT createValExpDataT() {
return new ValExpDataT();
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link ExValType }{@code >}
*
* @param value
* Java instance representing xml element's value.
* @return
* the new instance of {@link JAXBElement }{@code <}{@link ExValType }{@code >}
*/
@XmlElementDecl(namespace = "http://www.nic.cz/xml/epp/enumval-1.2", name = "create")
public JAXBElement createCreate(ExValType value) {
return new JAXBElement(_Create_QNAME, ExValType.class, null, value);
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link UpdateType }{@code >}
*
* @param value
* Java instance representing xml element's value.
* @return
* the new instance of {@link JAXBElement }{@code <}{@link UpdateType }{@code >}
*/
@XmlElementDecl(namespace = "http://www.nic.cz/xml/epp/enumval-1.2", name = "update")
public JAXBElement createUpdate(UpdateType value) {
return new JAXBElement(_Update_QNAME, UpdateType.class, null, value);
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link ExValType }{@code >}
*
* @param value
* Java instance representing xml element's value.
* @return
* the new instance of {@link JAXBElement }{@code <}{@link ExValType }{@code >}
*/
@XmlElementDecl(namespace = "http://www.nic.cz/xml/epp/enumval-1.2", name = "renew")
public JAXBElement createRenew(ExValType value) {
return new JAXBElement(_Renew_QNAME, ExValType.class, null, value);
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link ExValType }{@code >}
*
* @param value
* Java instance representing xml element's value.
* @return
* the new instance of {@link JAXBElement }{@code <}{@link ExValType }{@code >}
*/
@XmlElementDecl(namespace = "http://www.nic.cz/xml/epp/enumval-1.2", name = "infData")
public JAXBElement createInfData(ExValType value) {
return new JAXBElement(_InfData_QNAME, ExValType.class, null, value);
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link ImpendingValExpDataT }{@code >}
*
* @param value
* Java instance representing xml element's value.
* @return
* the new instance of {@link JAXBElement }{@code <}{@link ImpendingValExpDataT }{@code >}
*/
@XmlElementDecl(namespace = "http://www.nic.cz/xml/epp/enumval-1.2", name = "impendingValExpData")
public JAXBElement createImpendingValExpData(ImpendingValExpDataT value) {
return new JAXBElement(_ImpendingValExpData_QNAME, ImpendingValExpDataT.class, null, value);
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link ValExpDataT }{@code >}
*
* @param value
* Java instance representing xml element's value.
* @return
* the new instance of {@link JAXBElement }{@code <}{@link ValExpDataT }{@code >}
*/
@XmlElementDecl(namespace = "http://www.nic.cz/xml/epp/enumval-1.2", name = "valExpData")
public JAXBElement createValExpData(ValExpDataT value) {
return new JAXBElement(_ValExpData_QNAME, ValExpDataT.class, null, value);
}
}