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

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


    private RetailerPojoService retailerService;

    @GET
    @Produces(MediaType.APPLICATION_JSON)
    public RetailerListPojoResponse getAllRetailers() {
        RetailerListPojoResponse retailerListPojoResponse = new RetailerListPojoResponse();
        List<RetailerPojo> retailers = retailerService.findAllRetailers();
        retailerListPojoResponse.setRetailers(retailers);
        return retailerListPojoResponse;
    }
View Full Code Here

TOP

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

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.