Examples of StorePojoResponse


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

    @GET
    @Produces(MediaType.APPLICATION_JSON)
    @Path("{code}")
    public StorePojoResponse getStoreByCode(@PathParam("code") final String code) {
        StorePojoResponse StorePojoResponse = new StorePojoResponse();
        StorePojo store = storeService.getStoreByCode(code);
        StorePojoResponse.setStore(store);
        return StorePojoResponse;
    }
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.