ENDRPrint/.svn/pristine/d8/d8facdcdbacaf74a00fbd12ee78f133d4d5c7aec.svn-base
2024-08-14 10:33:27 +07:00

98 lines
4.0 KiB
Plaintext

package th.co.muangthai.endrprint.wfxml;
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 th.co.muangthai.endrprint.wfxml package.
* <p>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 _SearchPolicyDetailAdapterInput_QNAME = new QName("http://xmlns.oracle.com/pcbpel/adapter/db/SearchPolicyDetailAdapter", "SearchPolicyDetailAdapterInput");
private final static QName _SearchPolicyDetailAdapterOutputCollection_QNAME = new QName("http://xmlns.oracle.com/pcbpel/adapter/db/SearchPolicyDetailAdapter", "SearchPolicyDetailAdapterOutputCollection");
private final static QName _Exception_QNAME = new QName("http://xmlns.oracle.com/pcbpel/adapter/db/SearchPolicyDetailAdapter", "Exception");
/**
* Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: th.co.muangthai.endrprint.wfxml
*
*/
public ObjectFactory() {
}
/**
* Create an instance of {@link SearchPolicyDetailAdapterOutput }
*
*/
public SearchPolicyDetailAdapterOutput createSearchPolicyDetailAdapterOutput() {
return new SearchPolicyDetailAdapterOutput();
}
/**
* Create an instance of {@link SearchPolicyDetailAdapterInput }
*
*/
public SearchPolicyDetailAdapterInput createSearchPolicyDetailAdapterInput() {
return new SearchPolicyDetailAdapterInput();
}
/**
* Create an instance of {@link Exception }
*
*/
public Exception createException() {
return new Exception();
}
/**
* Create an instance of {@link SearchPolicyDetailAdapterOutputCollection }
*
*/
public SearchPolicyDetailAdapterOutputCollection createSearchPolicyDetailAdapterOutputCollection() {
return new SearchPolicyDetailAdapterOutputCollection();
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link SearchPolicyDetailAdapterInput }{@code >}}
*
*/
@XmlElementDecl(namespace = "http://xmlns.oracle.com/pcbpel/adapter/db/SearchPolicyDetailAdapter", name = "SearchPolicyDetailAdapterInput")
public JAXBElement<SearchPolicyDetailAdapterInput> createSearchPolicyDetailAdapterInput(SearchPolicyDetailAdapterInput value) {
return new JAXBElement<SearchPolicyDetailAdapterInput>(_SearchPolicyDetailAdapterInput_QNAME, SearchPolicyDetailAdapterInput.class, null, value);
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link SearchPolicyDetailAdapterOutputCollection }{@code >}}
*
*/
@XmlElementDecl(namespace = "http://xmlns.oracle.com/pcbpel/adapter/db/SearchPolicyDetailAdapter", name = "SearchPolicyDetailAdapterOutputCollection")
public JAXBElement<SearchPolicyDetailAdapterOutputCollection> createSearchPolicyDetailAdapterOutputCollection(SearchPolicyDetailAdapterOutputCollection value) {
return new JAXBElement<SearchPolicyDetailAdapterOutputCollection>(_SearchPolicyDetailAdapterOutputCollection_QNAME, SearchPolicyDetailAdapterOutputCollection.class, null, value);
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link Exception }{@code >}}
*
*/
@XmlElementDecl(namespace = "http://xmlns.oracle.com/pcbpel/adapter/db/SearchPolicyDetailAdapter", name = "Exception")
public JAXBElement<Exception> createException(Exception value) {
return new JAXBElement<Exception>(_Exception_QNAME, Exception.class, null, value);
}
}