Liferay 6.0.5

com.liferay.portlet.shopping.service
Class ShoppingCategoryLocalServiceWrapper

java.lang.Object
  extended by com.liferay.portlet.shopping.service.ShoppingCategoryLocalServiceWrapper
All Implemented Interfaces:
ShoppingCategoryLocalService

public class ShoppingCategoryLocalServiceWrapper
extends Object
implements ShoppingCategoryLocalService

This class is a wrapper for ShoppingCategoryLocalService.

See Also:
ShoppingCategoryLocalService
ServiceBuilder generated this class. Modifications in this class will be overwritten the next time is generated.

Constructor Summary
ShoppingCategoryLocalServiceWrapper(ShoppingCategoryLocalService shoppingCategoryLocalService)
           
 
Method Summary
 ShoppingCategory addCategory(long userId, long parentCategoryId, String name, String description, ServiceContext serviceContext)
           
 void addCategoryResources(long categoryId, boolean addCommunityPermissions, boolean addGuestPermissions)
           
 void addCategoryResources(long categoryId, String[] communityPermissions, String[] guestPermissions)
           
 void addCategoryResources(ShoppingCategory category, boolean addCommunityPermissions, boolean addGuestPermissions)
           
 void addCategoryResources(ShoppingCategory category, String[] communityPermissions, String[] guestPermissions)
           
 ShoppingCategory addShoppingCategory(ShoppingCategory shoppingCategory)
          Adds the shopping category to the database.
 ShoppingCategory createShoppingCategory(long categoryId)
          Creates a new shopping category with the primary key.
 void deleteCategories(long groupId)
           
 void deleteCategory(long categoryId)
           
 void deleteCategory(ShoppingCategory category)
           
 void deleteShoppingCategory(long categoryId)
          Deletes the shopping category with the primary key from the database.
 void deleteShoppingCategory(ShoppingCategory shoppingCategory)
          Deletes the shopping category from the database.
 List dynamicQuery(DynamicQuery dynamicQuery)
          Performs a dynamic query on the database and returns the matching rows.
 List dynamicQuery(DynamicQuery dynamicQuery, int start, int end)
          Performs a dynamic query on the database and returns a range of the matching rows.
 List dynamicQuery(DynamicQuery dynamicQuery, int start, int end, OrderByComparator orderByComparator)
          Performs a dynamic query on the database and returns an ordered range of the matching rows.
 long dynamicQueryCount(DynamicQuery dynamicQuery)
          Counts the number of rows that match the dynamic query.
 List<ShoppingCategory> getCategories(long groupId)
           
 List<ShoppingCategory> getCategories(long groupId, long parentCategoryId, int start, int end)
           
 int getCategoriesCount(long groupId, long parentCategoryId)
           
 ShoppingCategory getCategory(long categoryId)
           
 List<ShoppingCategory> getParentCategories(long categoryId)
           
 List<ShoppingCategory> getParentCategories(ShoppingCategory category)
           
 ShoppingCategory getParentCategory(ShoppingCategory category)
           
 List<ShoppingCategory> getShoppingCategories(int start, int end)
          Gets a range of all the shopping categories.
 int getShoppingCategoriesCount()
          Gets the number of shopping categories.
 ShoppingCategory getShoppingCategory(long categoryId)
          Gets the shopping category with the primary key.
 void getSubcategoryIds(List<Long> categoryIds, long groupId, long categoryId)
           
 ShoppingCategoryLocalService getWrappedShoppingCategoryLocalService()
           
 ShoppingCategory updateCategory(long categoryId, long parentCategoryId, String name, String description, boolean mergeWithParentCategory, ServiceContext serviceContext)
           
 ShoppingCategory updateShoppingCategory(ShoppingCategory shoppingCategory)
          Updates the shopping category in the database.
 ShoppingCategory updateShoppingCategory(ShoppingCategory shoppingCategory, boolean merge)
          Updates the shopping category in the database.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ShoppingCategoryLocalServiceWrapper

public ShoppingCategoryLocalServiceWrapper(ShoppingCategoryLocalService shoppingCategoryLocalService)
Method Detail

addShoppingCategory

public ShoppingCategory addShoppingCategory(ShoppingCategory shoppingCategory)
                                     throws SystemException
Adds the shopping category to the database. Also notifies the appropriate model listeners.

Specified by:
addShoppingCategory in interface ShoppingCategoryLocalService
Parameters:
shoppingCategory - the shopping category to add
Returns:
the shopping category that was added
Throws:
SystemException - if a system exception occurred

createShoppingCategory

public ShoppingCategory createShoppingCategory(long categoryId)
Creates a new shopping category with the primary key. Does not add the shopping category to the database.

Specified by:
createShoppingCategory in interface ShoppingCategoryLocalService
Parameters:
categoryId - the primary key for the new shopping category
Returns:
the new shopping category

deleteShoppingCategory

public void deleteShoppingCategory(long categoryId)
                            throws PortalException,
                                   SystemException
Deletes the shopping category with the primary key from the database. Also notifies the appropriate model listeners.

Specified by:
deleteShoppingCategory in interface ShoppingCategoryLocalService
Parameters:
categoryId - the primary key of the shopping category to delete
Throws:
PortalException - if a shopping category with the primary key could not be found
SystemException - if a system exception occurred

deleteShoppingCategory

public void deleteShoppingCategory(ShoppingCategory shoppingCategory)
                            throws SystemException
Deletes the shopping category from the database. Also notifies the appropriate model listeners.

Specified by:
deleteShoppingCategory in interface ShoppingCategoryLocalService
Parameters:
shoppingCategory - the shopping category to delete
Throws:
SystemException - if a system exception occurred

dynamicQuery

public List dynamicQuery(DynamicQuery dynamicQuery)
                  throws SystemException
Performs a dynamic query on the database and returns the matching rows.

Specified by:
dynamicQuery in interface ShoppingCategoryLocalService
Parameters:
dynamicQuery - the dynamic query to search with
Returns:
the matching rows
Throws:
SystemException - if a system exception occurred

dynamicQuery

public List dynamicQuery(DynamicQuery dynamicQuery,
                         int start,
                         int end)
                  throws SystemException
Performs a dynamic query on the database and returns a range of the matching rows.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Specified by:
dynamicQuery in interface ShoppingCategoryLocalService
Parameters:
dynamicQuery - the dynamic query to search with
start - the lower bound of the range of model instances to return
end - the upper bound of the range of model instances to return (not inclusive)
Returns:
the range of matching rows
Throws:
SystemException - if a system exception occurred

dynamicQuery

public List dynamicQuery(DynamicQuery dynamicQuery,
                         int start,
                         int end,
                         OrderByComparator orderByComparator)
                  throws SystemException
Performs a dynamic query on the database and returns an ordered range of the matching rows.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Specified by:
dynamicQuery in interface ShoppingCategoryLocalService
Parameters:
dynamicQuery - the dynamic query to search with
start - the lower bound of the range of model instances to return
end - the upper bound of the range of model instances to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of matching rows
Throws:
SystemException - if a system exception occurred

dynamicQueryCount

public long dynamicQueryCount(DynamicQuery dynamicQuery)
                       throws SystemException
Counts the number of rows that match the dynamic query.

Specified by:
dynamicQueryCount in interface ShoppingCategoryLocalService
Parameters:
dynamicQuery - the dynamic query to search with
Returns:
the number of rows that match the dynamic query
Throws:
SystemException - if a system exception occurred

getShoppingCategory

public ShoppingCategory getShoppingCategory(long categoryId)
                                     throws PortalException,
                                            SystemException
Gets the shopping category with the primary key.

Specified by:
getShoppingCategory in interface ShoppingCategoryLocalService
Parameters:
categoryId - the primary key of the shopping category to get
Returns:
the shopping category
Throws:
PortalException - if a shopping category with the primary key could not be found
SystemException - if a system exception occurred

getShoppingCategories

public List<ShoppingCategory> getShoppingCategories(int start,
                                                    int end)
                                             throws SystemException
Gets a range of all the shopping categories.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Specified by:
getShoppingCategories in interface ShoppingCategoryLocalService
Parameters:
start - the lower bound of the range of shopping categories to return
end - the upper bound of the range of shopping categories to return (not inclusive)
Returns:
the range of shopping categories
Throws:
SystemException - if a system exception occurred

getShoppingCategoriesCount

public int getShoppingCategoriesCount()
                               throws SystemException
Gets the number of shopping categories.

Specified by:
getShoppingCategoriesCount in interface ShoppingCategoryLocalService
Returns:
the number of shopping categories
Throws:
SystemException - if a system exception occurred

updateShoppingCategory

public ShoppingCategory updateShoppingCategory(ShoppingCategory shoppingCategory)
                                        throws SystemException
Updates the shopping category in the database. Also notifies the appropriate model listeners.

Specified by:
updateShoppingCategory in interface ShoppingCategoryLocalService
Parameters:
shoppingCategory - the shopping category to update
Returns:
the shopping category that was updated
Throws:
SystemException - if a system exception occurred

updateShoppingCategory

public ShoppingCategory updateShoppingCategory(ShoppingCategory shoppingCategory,
                                               boolean merge)
                                        throws SystemException
Updates the shopping category in the database. Also notifies the appropriate model listeners.

Specified by:
updateShoppingCategory in interface ShoppingCategoryLocalService
Parameters:
shoppingCategory - the shopping category to update
merge - whether to merge the shopping category with the current session. See BatchSession.update(com.liferay.portal.kernel.dao.orm.Session, com.liferay.portal.model.BaseModel, boolean) for an explanation.
Returns:
the shopping category that was updated
Throws:
SystemException - if a system exception occurred

addCategory

public ShoppingCategory addCategory(long userId,
                                    long parentCategoryId,
                                    String name,
                                    String description,
                                    ServiceContext serviceContext)
                             throws PortalException,
                                    SystemException
Specified by:
addCategory in interface ShoppingCategoryLocalService
Throws:
PortalException
SystemException

addCategoryResources

public void addCategoryResources(long categoryId,
                                 boolean addCommunityPermissions,
                                 boolean addGuestPermissions)
                          throws PortalException,
                                 SystemException
Specified by:
addCategoryResources in interface ShoppingCategoryLocalService
Throws:
PortalException
SystemException

addCategoryResources

public void addCategoryResources(long categoryId,
                                 String[] communityPermissions,
                                 String[] guestPermissions)
                          throws PortalException,
                                 SystemException
Specified by:
addCategoryResources in interface ShoppingCategoryLocalService
Throws:
PortalException
SystemException

addCategoryResources

public void addCategoryResources(ShoppingCategory category,
                                 boolean addCommunityPermissions,
                                 boolean addGuestPermissions)
                          throws PortalException,
                                 SystemException
Specified by:
addCategoryResources in interface ShoppingCategoryLocalService
Throws:
PortalException
SystemException

addCategoryResources

public void addCategoryResources(ShoppingCategory category,
                                 String[] communityPermissions,
                                 String[] guestPermissions)
                          throws PortalException,
                                 SystemException
Specified by:
addCategoryResources in interface ShoppingCategoryLocalService
Throws:
PortalException
SystemException

deleteCategories

public void deleteCategories(long groupId)
                      throws PortalException,
                             SystemException
Specified by:
deleteCategories in interface ShoppingCategoryLocalService
Throws:
PortalException
SystemException

deleteCategory

public void deleteCategory(long categoryId)
                    throws PortalException,
                           SystemException
Specified by:
deleteCategory in interface ShoppingCategoryLocalService
Throws:
PortalException
SystemException

deleteCategory

public void deleteCategory(ShoppingCategory category)
                    throws PortalException,
                           SystemException
Specified by:
deleteCategory in interface ShoppingCategoryLocalService
Throws:
PortalException
SystemException

getCategories

public List<ShoppingCategory> getCategories(long groupId)
                                     throws SystemException
Specified by:
getCategories in interface ShoppingCategoryLocalService
Throws:
SystemException

getCategories

public List<ShoppingCategory> getCategories(long groupId,
                                            long parentCategoryId,
                                            int start,
                                            int end)
                                     throws SystemException
Specified by:
getCategories in interface ShoppingCategoryLocalService
Throws:
SystemException

getCategoriesCount

public int getCategoriesCount(long groupId,
                              long parentCategoryId)
                       throws SystemException
Specified by:
getCategoriesCount in interface ShoppingCategoryLocalService
Throws:
SystemException

getCategory

public ShoppingCategory getCategory(long categoryId)
                             throws PortalException,
                                    SystemException
Specified by:
getCategory in interface ShoppingCategoryLocalService
Throws:
PortalException
SystemException

getParentCategories

public List<ShoppingCategory> getParentCategories(long categoryId)
                                           throws PortalException,
                                                  SystemException
Specified by:
getParentCategories in interface ShoppingCategoryLocalService
Throws:
PortalException
SystemException

getParentCategories

public List<ShoppingCategory> getParentCategories(ShoppingCategory category)
                                           throws PortalException,
                                                  SystemException
Specified by:
getParentCategories in interface ShoppingCategoryLocalService
Throws:
PortalException
SystemException

getParentCategory

public ShoppingCategory getParentCategory(ShoppingCategory category)
                                   throws PortalException,
                                          SystemException
Specified by:
getParentCategory in interface ShoppingCategoryLocalService
Throws:
PortalException
SystemException

getSubcategoryIds

public void getSubcategoryIds(List<Long> categoryIds,
                              long groupId,
                              long categoryId)
                       throws SystemException
Specified by:
getSubcategoryIds in interface ShoppingCategoryLocalService
Throws:
SystemException

updateCategory

public ShoppingCategory updateCategory(long categoryId,
                                       long parentCategoryId,
                                       String name,
                                       String description,
                                       boolean mergeWithParentCategory,
                                       ServiceContext serviceContext)
                                throws PortalException,
                                       SystemException
Specified by:
updateCategory in interface ShoppingCategoryLocalService
Throws:
PortalException
SystemException

getWrappedShoppingCategoryLocalService

public ShoppingCategoryLocalService getWrappedShoppingCategoryLocalService()

Liferay 6.0.5