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.tools.plugin
|
Modifier and Type | Method and Description |
---|---|
Builder |
createBuilder()
Create an instance of
Builder |
Container |
createContainer()
Create an instance of
Container |
DataBinding |
createDataBinding()
Create an instance of
DataBinding |
FrontEnd |
createFrontEnd()
Create an instance of
FrontEnd |
Generator |
createGenerator()
Create an instance of
Generator |
JAXBElement<Generator> |
createGenerator(Generator value)
|
Generators |
createGenerators()
Create an instance of
Generators |
Plugin |
createPlugin()
Create an instance of
Plugin |
JAXBElement<Plugin> |
createPlugin(Plugin value)
|
Processor |
createProcessor()
Create an instance of
Processor |
public ObjectFactory()
public DataBinding createDataBinding()
DataBinding
public Generators createGenerators()
Generators
public JAXBElement<Generator> createGenerator(Generator value)
value
- Java instance representing xml element's value.JAXBElement
<
Generator
>
public JAXBElement<Plugin> createPlugin(Plugin value)
value
- Java instance representing xml element's value.JAXBElement
<
Plugin
>
Apache CXF