Package org.apache.cxf.binding.http

Examples of org.apache.cxf.binding.http.Customer


    public void deleteCustomer(String id) {
        customers.remove(new Long(id));
    }

    final Customer createCustomer() {
        Customer c = new Customer();
        c.setName("Dan Diephouse");
        c.setId(123);
        return c;
    }
View Full Code Here

TOP

Related Classes of org.apache.cxf.binding.http.Customer

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.