cz.nic.xml.epp.extra_addr_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.extra_addr_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.extra_addr_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/extra-addr-1.0", "create");
private final static QName _Update_QNAME = new QName("http://www.nic.cz/xml/epp/extra-addr-1.0", "update");
private final static QName _InfData_QNAME = new QName("http://www.nic.cz/xml/epp/extra-addr-1.0", "infData");
/**
* Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: cz.nic.xml.epp.extra_addr_1
*
*/
public ObjectFactory() {
}
/**
* Create an instance of {@link AddrType }
*
*/
public AddrType createAddrType() {
return new AddrType();
}
/**
* Create an instance of {@link AddrListType }
*
*/
public AddrListType createAddrListType() {
return new AddrListType();
}
/**
* Create an instance of {@link UpdateType }
*
*/
public UpdateType createUpdateType() {
return new UpdateType();
}
/**
* Create an instance of {@link RemType }
*
*/
public RemType createRemType() {
return new RemType();
}
/**
* Create an instance of {@link AddrType.Addr }
*
*/
public AddrType.Addr createAddrTypeAddr() {
return new AddrType.Addr();
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link AddrListType }{@code >}
*
* @param value
* Java instance representing xml element's value.
* @return
* the new instance of {@link JAXBElement }{@code <}{@link AddrListType }{@code >}
*/
@XmlElementDecl(namespace = "http://www.nic.cz/xml/epp/extra-addr-1.0", name = "create")
public JAXBElement createCreate(AddrListType value) {
return new JAXBElement(_Create_QNAME, AddrListType.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/extra-addr-1.0", name = "update")
public JAXBElement createUpdate(UpdateType value) {
return new JAXBElement(_Update_QNAME, UpdateType.class, null, value);
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link AddrListType }{@code >}
*
* @param value
* Java instance representing xml element's value.
* @return
* the new instance of {@link JAXBElement }{@code <}{@link AddrListType }{@code >}
*/
@XmlElementDecl(namespace = "http://www.nic.cz/xml/epp/extra-addr-1.0", name = "infData")
public JAXBElement createInfData(AddrListType value) {
return new JAXBElement(_InfData_QNAME, AddrListType.class, null, value);
}
}