org.xmlsoap.ws.enumeration.ObjectFactory Maven / Gradle / Ivy
Show all versions of bedrock-runtime-windows Show documentation
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.0
// See https://javaee.github.io/jaxb-v2/
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2020.07.22 at 02:53:45 PM EET
//
package org.xmlsoap.ws.enumeration;
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 org.xmlsoap.ws.enumeration 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 _SupportedDialect_QNAME = new QName("http://schemas.xmlsoap.org/ws/2004/09/enumeration", "SupportedDialect");
/**
* Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.xmlsoap.ws.enumeration
*
*/
public ObjectFactory() {
}
/**
* Create an instance of {@link Enumerate }
*
*/
public Enumerate createEnumerate() {
return new Enumerate();
}
/**
* Create an instance of {@link FilterType }
*
*/
public FilterType createFilterType() {
return new FilterType();
}
/**
* Create an instance of {@link EnumerateResponse }
*
*/
public EnumerateResponse createEnumerateResponse() {
return new EnumerateResponse();
}
/**
* Create an instance of {@link EnumerationContextType }
*
*/
public EnumerationContextType createEnumerationContextType() {
return new EnumerationContextType();
}
/**
* Create an instance of {@link Pull }
*
*/
public Pull createPull() {
return new Pull();
}
/**
* Create an instance of {@link PullResponse }
*
*/
public PullResponse createPullResponse() {
return new PullResponse();
}
/**
* Create an instance of {@link ItemListType }
*
*/
public ItemListType createItemListType() {
return new ItemListType();
}
/**
* Create an instance of {@link Renew }
*
*/
public Renew createRenew() {
return new Renew();
}
/**
* Create an instance of {@link RenewResponse }
*
*/
public RenewResponse createRenewResponse() {
return new RenewResponse();
}
/**
* Create an instance of {@link GetStatus }
*
*/
public GetStatus createGetStatus() {
return new GetStatus();
}
/**
* Create an instance of {@link GetStatusResponse }
*
*/
public GetStatusResponse createGetStatusResponse() {
return new GetStatusResponse();
}
/**
* Create an instance of {@link Release }
*
*/
public Release createRelease() {
return new Release();
}
/**
* Create an instance of {@link EnumerationEnd }
*
*/
public EnumerationEnd createEnumerationEnd() {
return new EnumerationEnd();
}
/**
* Create an instance of {@link LanguageSpecificStringType }
*
*/
public LanguageSpecificStringType createLanguageSpecificStringType() {
return new LanguageSpecificStringType();
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}
*
* @param value
* Java instance representing xml element's value.
* @return
* the new instance of {@link JAXBElement }{@code <}{@link String }{@code >}
*/
@XmlElementDecl(namespace = "http://schemas.xmlsoap.org/ws/2004/09/enumeration", name = "SupportedDialect")
public JAXBElement createSupportedDialect(String value) {
return new JAXBElement(_SupportedDialect_QNAME, String.class, null, value);
}
}