Package com.franknavarsete.jaxrs.services.xml

Examples of com.franknavarsete.jaxrs.services.xml.Customer


     */
    @GET
    @Path("/{pin}")
    @Produces(MediaType.APPLICATION_XML)
    public Customer getCustomerInXML(@PathParam("pin") int pin) {
        Customer customer = new Customer();
        customer.setName("Frank");
        customer.setPin(pin);

        return customer;
    }
View Full Code Here

TOP

Related Classes of com.franknavarsete.jaxrs.services.xml.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.