Examples of RetailerPojoResponse


Examples of org.hoteia.qalingo.core.pojo.retailer.RetailerPojoResponse

    @GET
    @Path("{code}")
    @Produces(MediaType.APPLICATION_JSON)
    public RetailerPojoResponse getRetailerByCode(@PathParam("code") final String code) {
        RetailerPojoResponse retailerPojoResponse = new RetailerPojoResponse();
        RetailerPojo retailerPojo = retailerService.getRetailerByCode(code);
        retailerPojoResponse.setRetailer(retailerPojo);
        return retailerPojoResponse;
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.