Package org.hoteia.qalingo.core.pojo.store

Examples of org.hoteia.qalingo.core.pojo.store.StorePojo


    @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

Related Classes of org.hoteia.qalingo.core.pojo.store.StorePojo

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.