Package org.hoteia.qalingo.core.pojo.retailer

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

Related Classes of org.hoteia.qalingo.core.pojo.retailer.RetailerPojoResponse

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.