Package org.apache.rave.rest.model

Examples of org.apache.rave.rest.model.CategoryList


    private CategoryService categoryService;
    private UserService userService;

    @Override
    public Response getCategories() {
        CategoryList categoryList = new CategoryList();
        for (org.apache.rave.model.Category category : categoryService.getAll()) {
            categoryList.getCategories().add(new Category((category)));
        }

        return Response.ok(categoryList).build();
    }
View Full Code Here

TOP

Related Classes of org.apache.rave.rest.model.CategoryList

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.