Uses of Class
fr.paris.lutece.plugins.stock.business.Category

Packages that use Category
fr.paris.lutece.plugins.stock.business   
fr.paris.lutece.plugins.stock.service   
fr.paris.lutece.plugins.stock.web   
 

Uses of Category in fr.paris.lutece.plugins.stock.business
 

Subclasses of Category in fr.paris.lutece.plugins.stock.business
 class TicketCategory
          TicketCategory
 

Fields in fr.paris.lutece.plugins.stock.business with type parameters of type Category
static javax.persistence.metamodel.SingularAttribute<Category,java.lang.Boolean> Category_.active
           
static javax.persistence.metamodel.SingularAttribute<Product,Category> Product_.category
           
static javax.persistence.metamodel.ListAttribute<Category,Category> Category_.childrenList
           
static javax.persistence.metamodel.ListAttribute<Category,Category> Category_.childrenList
           
static javax.persistence.metamodel.SingularAttribute<Category,java.lang.Integer> Category_.idCategory
           
static javax.persistence.metamodel.SingularAttribute<Category,java.lang.String> Category_.name
           
static javax.persistence.metamodel.SingularAttribute<Category,Category> Category_.parent
           
static javax.persistence.metamodel.SingularAttribute<Category,Category> Category_.parent
           
static javax.persistence.metamodel.ListAttribute<Category,Product> Category_.productSet
           
static javax.persistence.metamodel.SingularAttribute<Category,Provider> Category_.provider
           
 

Methods in fr.paris.lutece.plugins.stock.business that return Category
 Category ICategoryDAO.findByIdWithChildren(java.lang.Integer idCategory)
          Finds a category and all his subcategories and fetch children
 Category CategoryDAO.findByIdWithChildren(java.lang.Integer idCategory)
          Finds a category and all his subcategories and fetch children
 Category ICategoryHome.findByIdWithParent(java.lang.Integer nIdCategory)
          Finds a category and fetch parent
 Category ICategoryDAO.findByIdWithParent(java.lang.Integer idCategory)
          Finds a category and fetch parent
 Category CategoryDAO.findByIdWithParent(java.lang.Integer idCategory)
          Finds a category and fetch parent
 Category CategoryHome.findByIdWithParent(java.lang.Integer nIdCategory)
          Finds a category and fetch parent
 Category ICategoryHome.findByIdWithProduct(java.lang.Integer nIdCategory)
          Finds a category and fetch product
 Category ICategoryDAO.findByIdWithProduct(java.lang.Integer idCategory)
          Finds a category and fetch products
 Category CategoryDAO.findByIdWithProduct(java.lang.Integer idCategory)
          Finds a category and fetch products
 Category CategoryHome.findByIdWithProduct(java.lang.Integer nIdCategory)
          Finds a category and fetch product
 Category ICategoryHome.findByPrimarykeyWithChildren(java.lang.Integer nIdCategory)
          Finds a category and all his subcategories and fetch children
 Category CategoryHome.findByPrimarykeyWithChildren(java.lang.Integer nIdCategory)
          Finds a category and all his subcategories and fetch children
 Category Product.getCategory()
          Get the category linked to the product
 Category Category.getParent()
          return the category parent
 

Methods in fr.paris.lutece.plugins.stock.business that return types with arguments of type Category
 java.util.List<Category> ICategoryHome.findAllChildrenWithChildren(java.lang.Integer idCategory)
          Finds all category's children and fetch children
 java.util.List<Category> CategoryHome.findAllChildrenWithChildren(java.lang.Integer idCategory)
          Finds all category's children and fetch children
 java.util.List<Category> ICategoryHome.findAllFirstLevelWithChildren()
          Finds all categories (first level) and fetch children
 java.util.List<Category> CategoryHome.findAllFirstLevelWithChildren()
          Finds all categories (first level) and fetch children
 java.util.List<Category> ICategoryHome.findByFilter(CategoryFilter filter)
          Finds by filter
 java.util.List<Category> ICategoryDAO.findByFilter(CategoryFilter filter)
          Finds by filter
 java.util.List<Category> CategoryDAO.findByFilter(CategoryFilter filter)
          Find category list by filter
 java.util.List<Category> CategoryHome.findByFilter(CategoryFilter filter)
          Finds by filter
 java.util.List<Category> ICategoryHome.findByFilterWithChildren(CategoryFilter filter)
          Finds by filter and fetch children
 java.util.List<Category> ICategoryDAO.findByFilterWithChildren(CategoryFilter filter)
          Finds by filter and fetch children
 java.util.List<Category> CategoryDAO.findByFilterWithChildren(CategoryFilter filter)
          Find category with children fetched by filter
 java.util.List<Category> CategoryHome.findByFilterWithChildren(CategoryFilter filter)
          Finds by filter and fetch children
 java.util.List<Category> Category.getChildrenList()
          Return the children list
 java.util.List<Category> Provider.getProducts()
          Get the product list
 java.util.List<Category> ICategoryDAO.selectAllChildrenWithChildrenWithProduct(java.lang.Integer idCategory)
          Finds all category's children and fetch children
 java.util.List<Category> CategoryDAO.selectAllChildrenWithChildrenWithProduct(java.lang.Integer idCategory)
          Finds all category's children and fetch children
 java.util.List<Category> ICategoryDAO.selectAllFirstLevelWithChildrenWithProduct()
          Finds all first level categories (i.e. parent == null ) and fetch children
 java.util.List<Category> CategoryDAO.selectAllFirstLevelWithChildrenWithProduct()
          Finds all first level categories (i.e. parent == null ) and fetch children
 

Methods in fr.paris.lutece.plugins.stock.business with parameters of type Category
 void Product.setCategory(Category category)
          Set the category linked to the product
 void Category.setParent(Category parentCategory)
          Set the Category parent
 

Method parameters in fr.paris.lutece.plugins.stock.business with type arguments of type Category
 void Category.setChildrenList(java.util.List<Category> childrenList)
          Set the children list
 void Provider.setProducts(java.util.List<Category> products)
          Set the product list
 

Constructors in fr.paris.lutece.plugins.stock.business with parameters of type Category
Category(Category category)
          Build a new category from a category object
TicketCategory(Category category)
          Constructor from an other category
 

Uses of Category in fr.paris.lutece.plugins.stock.service
 

Methods in fr.paris.lutece.plugins.stock.service that return Category
 Category CategoryService.getCategory(int nIdCategory)
          Get the category with the given id
 Category TicketCategoryService.getCategory(int nIdCategory)
          Get the category with the given id
 Category ICategoryService.getCategory(int nIdCategory)
          Get the category with the given id
 Category GlobalCategoryService.getCategory(java.lang.String strCategoryClassName, int nIdCategory)
          Get the category with the given id
 Category CategoryService.getCategoryWithChildren(java.lang.Integer idCategory)
          Finds a category and all his subcategories and fetch children
 Category TicketCategoryService.getCategoryWithChildren(java.lang.Integer idCategory)
          Finds a category and all his subcategories and fetch children
 Category ICategoryService.getCategoryWithChildren(java.lang.Integer nIdCategory)
          Finds a category and all his subcategories and fetch children
 Category GlobalCategoryService.getCategoryWithChildren(java.lang.String strCategoryClassName, int nIdCategory)
          Finds a category and fetch children
 Category CategoryService.getCategoryWithParent(int nIdCategory)
          Finds a category and fetch parent
 Category TicketCategoryService.getCategoryWithParent(int nIdCategory)
          Finds a category and fetch parent
 Category ICategoryService.getCategoryWithParent(int nIdCategory)
          Finds a category and fetch parent
 Category GlobalCategoryService.getCategoryWithParent(java.lang.String strCategoryClassName, int nIdCategory)
          Finds a category and fetch parent
 

Methods in fr.paris.lutece.plugins.stock.service that return types with arguments of type Category
 java.util.List<Category> CategoryService.findByFilter(CategoryFilter filter)
          Finds all categories which match the given filter
 java.util.List<Category> TicketCategoryService.findByFilter(CategoryFilter filter)
          Finds all categories which match the given filter
 java.util.List<Category> ICategoryService.findByFilter(CategoryFilter filter)
          Finds all categories which match the given filter
 java.util.List<Category> GlobalCategoryService.findByFilter(java.lang.String strCategoryClassName, CategoryFilter filter)
          Finds all categories which match the given filter
 

Methods in fr.paris.lutece.plugins.stock.service with parameters of type Category
 java.lang.String CategoryService.doCreateCategory(Category category, javax.servlet.http.HttpServletRequest request)
          Creates a category
 java.lang.String TicketCategoryService.doCreateCategory(Category category, javax.servlet.http.HttpServletRequest request)
          Creates a category
 java.lang.String ICategoryService.doCreateCategory(Category category, javax.servlet.http.HttpServletRequest request)
          Creates a category
 java.lang.String GlobalCategoryService.doCreateCategory(java.lang.String strCategoryClassName, Category category, javax.servlet.http.HttpServletRequest request)
          Creates a category
 java.lang.String CategoryService.doModifyCategory(Category category, javax.servlet.http.HttpServletRequest request)
          Modifies a category
 java.lang.String TicketCategoryService.doModifyCategory(Category category, javax.servlet.http.HttpServletRequest request)
          Modifies a category
 java.lang.String ICategoryService.doModifyCategory(Category category, javax.servlet.http.HttpServletRequest request)
          Modifies a category
 java.lang.String GlobalCategoryService.doModifyCategory(java.lang.String strCategoryClassName, Category category, javax.servlet.http.HttpServletRequest request)
          Modifies a category
 

Uses of Category in fr.paris.lutece.plugins.stock.web
 

Methods in fr.paris.lutece.plugins.stock.web with parameters of type Category
protected  java.lang.String StockJspBean.getReturnJspAfterCreateCategory(javax.servlet.http.HttpServletRequest request, Category category)
          Returns url of the jsp after creating a category
 



Copyright © 2011 Mairie de Paris. All Rights Reserved.