public GetCustomersByNameResponse getCustomersByName(GetCustomersByName parameters, Product product) {
if (product == null) {
throw new IllegalArgumentException("product may not be null");
}
GetCustomersByNameResponse response = new GetCustomersByNameResponse();
Customer customer = new Customer();
customer.setName(product.getName());
customer.setRevenue(100000);
response.getReturn().add(customer);
return response;
}