use of com.example.customerservice.GetAllAmericanCustomersResponse in project camel by apache.
the class CustomerServiceImpl method getAllAmericanCustomers.
/**
* This method is to test a call without input parameter
*/
public GetAllAmericanCustomersResponse getAllAmericanCustomers() {
GetAllAmericanCustomersResponse response = new GetAllAmericanCustomersResponse();
Customer customer = new Customer();
customer.setName("Schmitz");
customer.setRevenue(100000);
response.getReturn().add(customer);
return response;
}
Aggregations