public class ObjectFactory extends Object
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.
| Constructor and Description |
|---|
ObjectFactory()
Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.apache.cxf.swa.types
|
| Modifier and Type | Method and Description |
|---|---|
DataStruct |
createDataStruct()
Create an instance of
DataStruct |
JAXBElement<String> |
createHeaderText(String value)
|
OutputResponseAll |
createOutputResponseAll()
Create an instance of
OutputResponseAll |
JAXBElement<OutputResponseAll> |
createOutputResponseAll(OutputResponseAll value)
|
JAXBElement<String> |
createText(String value)
|
VoidRequest |
createVoidRequest()
Create an instance of
VoidRequest |
JAXBElement<VoidRequest> |
createVoidRequest(VoidRequest value)
|
public ObjectFactory()
public OutputResponseAll createOutputResponseAll()
OutputResponseAllpublic DataStruct createDataStruct()
DataStructpublic VoidRequest createVoidRequest()
VoidRequestpublic JAXBElement<String> createText(String value)
public JAXBElement<OutputResponseAll> createOutputResponseAll(OutputResponseAll value)
public JAXBElement<String> createHeaderText(String value)
public JAXBElement<VoidRequest> createVoidRequest(VoidRequest value)
Apache CXF