Examples of CategoryListPojoResponse


Examples of org.hoteia.qalingo.core.pojo.catalog.CategoryListPojoResponse

    @GET
    @Path("virtual/{catalogCode}/category/")
    @Produces(MediaType.APPLICATION_JSON)
    public CategoryListPojoResponse categoriesByCatalog(@PathParam("catalogCode") final String catalogCode) {
        CategoryListPojoResponse categoryListPojoResponse = new CategoryListPojoResponse();
        List<CatalogCategoryPojo> categories = catalogService.getAllVirtualCategories(catalogCode);
        categoryListPojoResponse.setCategories(categories);
        return categoryListPojoResponse;
    }
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.