Package com.example.customerservice
Interface CustomerService
-
- All Known Implementing Classes:
CustomerServiceImpl
public interface CustomerService
This class was generated by Apache CXF 3.6.4 2024-11-14T23:26:41.140+13:00 Generated source version: 3.6.4
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<Customer>
getCustomersByName(String name)
void
updateCustomer(Customer customer)
-
-
-
Method Detail
-
updateCustomer
@RequestWrapper(localName="updateCustomer", targetNamespace="http://customerservice.example.com/", className="com.example.customerservice.UpdateCustomer") void updateCustomer(Customer customer)
-
getCustomersByName
@RequestWrapper(localName="getCustomersByName", targetNamespace="http://customerservice.example.com/", className="com.example.customerservice.GetCustomersByName") @ResponseWrapper(localName="getCustomersByNameResponse", targetNamespace="http://customerservice.example.com/", className="com.example.customerservice.GetCustomersByNameResponse") List<Customer> getCustomersByName(String name) throws NoSuchCustomerException
- Throws:
NoSuchCustomerException
-
-