Class ObjectFactory
- java.lang.Object
-
- org.apache.cxf.ws.addressing.wsdl.ObjectFactory
-
public class ObjectFactory extends Object
This object contains factory methods for each Java content interface and Java element interface generated in the org.apache.cxf.ws.addressing.wsdl 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.
-
-
Constructor Summary
Constructors Constructor Description ObjectFactory()Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.apache.cxf.ws.addressing.wsdl
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AnonymouscreateAnonymous()Create an instance ofAnonymousAttributedQNameTypecreateAttributedQNameType()Create an instance ofAttributedQNameTypejavax.xml.bind.JAXBElement<AttributedQNameType>createInterfaceName(AttributedQNameType value)javax.xml.bind.JAXBElement<ServiceNameType>createServiceName(ServiceNameType value)ServiceNameTypecreateServiceNameType()Create an instance ofServiceNameTypeUsingAddressingcreateUsingAddressing()Create an instance ofUsingAddressingjavax.xml.bind.JAXBElement<UsingAddressing>createUsingAddressing(UsingAddressing value)
-
-
-
Method Detail
-
createServiceNameType
public ServiceNameType createServiceNameType()
Create an instance ofServiceNameType
-
createAttributedQNameType
public AttributedQNameType createAttributedQNameType()
Create an instance ofAttributedQNameType
-
createUsingAddressing
public UsingAddressing createUsingAddressing()
Create an instance ofUsingAddressing
-
createServiceName
public javax.xml.bind.JAXBElement<ServiceNameType> createServiceName(ServiceNameType value)
- Parameters:
value- Java instance representing xml element's value.- Returns:
- the new instance of
JAXBElement<ServiceNameType>
-
createInterfaceName
public javax.xml.bind.JAXBElement<AttributedQNameType> createInterfaceName(AttributedQNameType value)
- Parameters:
value- Java instance representing xml element's value.- Returns:
- the new instance of
JAXBElement<AttributedQNameType>
-
createUsingAddressing
public javax.xml.bind.JAXBElement<UsingAddressing> createUsingAddressing(UsingAddressing value)
- Parameters:
value- Java instance representing xml element's value.- Returns:
- the new instance of
JAXBElement<UsingAddressing>
-
-