Package com.example.customerservice

Examples of com.example.customerservice.GetAllAmericanCustomersResponse


   
    /**
     * 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;
    }
View Full Code Here

TOP

Related Classes of com.example.customerservice.GetAllAmericanCustomersResponse

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.