Package com.example.customerservice
Class ObjectFactory
- java.lang.Object
-
- com.example.customerservice.ObjectFactory
-
public class ObjectFactory extends Object
This object contains factory methods for each Java content interface and Java element interface generated in the com.example.customerservice 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: com.example.customerservice
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Customer
createCustomer()
Create an instance ofCustomer
GetCustomersByName
createGetCustomersByName()
Create an instance ofGetCustomersByName
javax.xml.bind.JAXBElement<GetCustomersByName>
createGetCustomersByName(GetCustomersByName value)
GetCustomersByNameResponse
createGetCustomersByNameResponse()
Create an instance ofGetCustomersByNameResponse
javax.xml.bind.JAXBElement<GetCustomersByNameResponse>
createGetCustomersByNameResponse(GetCustomersByNameResponse value)
NoSuchCustomer
createNoSuchCustomer()
Create an instance ofNoSuchCustomer
javax.xml.bind.JAXBElement<NoSuchCustomer>
createNoSuchCustomer(NoSuchCustomer value)
UpdateCustomer
createUpdateCustomer()
Create an instance ofUpdateCustomer
javax.xml.bind.JAXBElement<UpdateCustomer>
createUpdateCustomer(UpdateCustomer value)
-
-
-
Method Detail
-
createGetCustomersByName
public GetCustomersByName createGetCustomersByName()
Create an instance ofGetCustomersByName
-
createGetCustomersByNameResponse
public GetCustomersByNameResponse createGetCustomersByNameResponse()
Create an instance ofGetCustomersByNameResponse
-
createUpdateCustomer
public UpdateCustomer createUpdateCustomer()
Create an instance ofUpdateCustomer
-
createNoSuchCustomer
public NoSuchCustomer createNoSuchCustomer()
Create an instance ofNoSuchCustomer
-
createGetCustomersByName
public javax.xml.bind.JAXBElement<GetCustomersByName> createGetCustomersByName(GetCustomersByName value)
- Parameters:
value
- Java instance representing xml element's value.- Returns:
- the new instance of
JAXBElement
<
GetCustomersByName
>
-
createGetCustomersByNameResponse
public javax.xml.bind.JAXBElement<GetCustomersByNameResponse> createGetCustomersByNameResponse(GetCustomersByNameResponse value)
- Parameters:
value
- Java instance representing xml element's value.- Returns:
- the new instance of
JAXBElement
<
GetCustomersByNameResponse
>
-
createUpdateCustomer
public javax.xml.bind.JAXBElement<UpdateCustomer> createUpdateCustomer(UpdateCustomer value)
- Parameters:
value
- Java instance representing xml element's value.- Returns:
- the new instance of
JAXBElement
<
UpdateCustomer
>
-
createNoSuchCustomer
public javax.xml.bind.JAXBElement<NoSuchCustomer> createNoSuchCustomer(NoSuchCustomer value)
- Parameters:
value
- Java instance representing xml element's value.- Returns:
- the new instance of
JAXBElement
<
NoSuchCustomer
>
-
-