Examples of CategoryPojoResponse


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

    @GET
    @Path("virtual/{catalogCode}/category/{categoryCode}")
    @Produces(MediaType.APPLICATION_JSON)
    public CategoryPojoResponse categoryDetails(@PathParam("catalogCode") final String catalogCode, @PathParam("categoryCode") final String categoryCode) {
        CategoryPojoResponse categoryPojoResponse = new CategoryPojoResponse();
        CatalogCategoryPojo category = catalogService.getCatalogCategoryByCode(catalogCode, categoryCode);
        categoryPojoResponse.setCategory(category);
        return categoryPojoResponse;
    }
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.