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
JAXBElement<GetCustomersByName>
createGetCustomersByName(GetCustomersByName value)
GetCustomersByNameResponse
createGetCustomersByNameResponse()
Create an instance ofGetCustomersByNameResponse
JAXBElement<GetCustomersByNameResponse>
createGetCustomersByNameResponse(GetCustomersByNameResponse value)
NoSuchCustomer
createNoSuchCustomer()
Create an instance ofNoSuchCustomer
JAXBElement<NoSuchCustomer>
createNoSuchCustomer(NoSuchCustomer value)
UpdateCustomer
createUpdateCustomer()
Create an instance ofUpdateCustomer
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 JAXBElement<GetCustomersByName> createGetCustomersByName(GetCustomersByName value)
- Parameters:
value
- Java instance representing xml element's value.- Returns:
- the new instance of
JAXBElement
<
GetCustomersByName
>
-
createGetCustomersByNameResponse
public JAXBElement<GetCustomersByNameResponse> createGetCustomersByNameResponse(GetCustomersByNameResponse value)
- Parameters:
value
- Java instance representing xml element's value.- Returns:
- the new instance of
JAXBElement
<
GetCustomersByNameResponse
>
-
createUpdateCustomer
public JAXBElement<UpdateCustomer> createUpdateCustomer(UpdateCustomer value)
- Parameters:
value
- Java instance representing xml element's value.- Returns:
- the new instance of
JAXBElement
<
UpdateCustomer
>
-
createNoSuchCustomer
public JAXBElement<NoSuchCustomer> createNoSuchCustomer(NoSuchCustomer value)
- Parameters:
value
- Java instance representing xml element's value.- Returns:
- the new instance of
JAXBElement
<
NoSuchCustomer
>
-
-