public interface CustomerService
| Modifier and Type | Method and Description |
|---|---|
List<Customer> |
getCustomersByName(String name) |
void |
updateCustomer(Customer customer) |
@RequestWrapper(localName="updateCustomer", targetNamespace="http://customerservice.example.org/", className="org.example.customerservice.UpdateCustomer") void updateCustomer(Customer customer)
@RequestWrapper(localName="getCustomersByName", targetNamespace="http://customerservice.example.org/", className="org.example.customerservice.GetCustomersByName") @ResponseWrapper(localName="getCustomersByNameResponse", targetNamespace="http://customerservice.example.org/", className="org.example.customerservice.GetCustomersByNameResponse") List<Customer> getCustomersByName(String name) throws NoSuchCustomerException
NoSuchCustomerExceptionCopyright © 2015 WSO2 Inc. All rights reserved.