use of org.apache.cxf.customer.Customers in project cxf by apache.
the class CustomerService method getCustomers.
@WebMethod
@WebResult(name = "customers")
public Customers getCustomers() {
Customers cbean = new Customers();
cbean.setCustomer(customers.values());
return cbean;
}
use of org.apache.cxf.customer.Customers in project cxf by apache.
the class CustomerService method getCustomers.
@WebMethod
@WebResult(name = "customers")
public Customers getCustomers(@WebParam(name = "GetCustomers") GetCustomers req) {
Customers cbean = new Customers();
cbean.setCustomer(customers.values());
if (context == null || context.getMessageContext() == null) {
throw new WebServiceException("WebServiceContext is null!");
}
return cbean;
}
Aggregations