Package com.ateam.webstore.model

Examples of com.ateam.webstore.model.Category


   
    String category = req.getParameter(Parameters.CATEGORY_ID.getId());
   
    CategoryService cs = new CategoryService();
   
    Category cat = cs.getById(Long.parseLong(category));
   
    ProductListingView pl = new ProductListingView(getMainView());
   
    pl.setProducts(service.getProductsByCategory(Long.parseLong(category)));
    l.info("displaying category: "+cat.getName());
   
    ContentView cv = new ContentView(JSP_PRODUCT_LISTING, cat.getName());
   
    pl.getContentViews().add(cv);

    return pl;
   
View Full Code Here

TOP

Related Classes of com.ateam.webstore.model.Category

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.