Liferay 6.1.2-ce-ga3

com.liferay.portlet.shopping.service
Class ShoppingCategoryLocalServiceWrapper

java.lang.Object
  extended by com.liferay.portlet.shopping.service.ShoppingCategoryLocalServiceWrapper
All Implemented Interfaces:
BaseLocalService, PersistedModelLocalService, ServiceWrapper<ShoppingCategoryLocalService>, ShoppingCategoryLocalService

public class ShoppingCategoryLocalServiceWrapper
extends Object
implements ShoppingCategoryLocalService, ServiceWrapper<ShoppingCategoryLocalService>

This class is a wrapper for ShoppingCategoryLocalService.

See Also:
ShoppingCategoryLocalService

Constructor Summary
ShoppingCategoryLocalServiceWrapper(ShoppingCategoryLocalService shoppingCategoryLocalService)
           
 
Method Summary
 ShoppingCategory addCategory(long userId, long parentCategoryId, String name, String description, ServiceContext serviceContext)
           
 void addCategoryResources(long categoryId, boolean addGroupPermissions, boolean addGuestPermissions)
           
 void addCategoryResources(long categoryId, String[] groupPermissions, String[] guestPermissions)
           
 void addCategoryResources(ShoppingCategory category, boolean addGroupPermissions, boolean addGuestPermissions)
           
 void addCategoryResources(ShoppingCategory category, String[] groupPermissions, 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)
           
 ShoppingCategory deleteShoppingCategory(long categoryId)
          Deletes the shopping category with the primary key from the database.
 ShoppingCategory deleteShoppingCategory(ShoppingCategory shoppingCategory)
          Deletes the shopping category from the database.
 DynamicQuery dynamicQuery()
           
 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)
          Returns the number of rows that match the dynamic query.
 ShoppingCategory fetchShoppingCategory(long categoryId)
           
 String getBeanIdentifier()
          Returns the Spring bean ID for this bean.
 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)
           
 PersistedModel getPersistedModel(Serializable primaryKeyObj)
           
 List<ShoppingCategory> getShoppingCategories(int start, int end)
          Returns a range of all the shopping categories.
 int getShoppingCategoriesCount()
          Returns the number of shopping categories.
 ShoppingCategory getShoppingCategory(long categoryId)
          Returns the shopping category with the primary key.
 void getSubcategoryIds(List<Long> categoryIds, long groupId, long categoryId)
           
 ShoppingCategoryLocalService getWrappedService()
           
 ShoppingCategoryLocalService getWrappedShoppingCategoryLocalService()
          Deprecated. Renamed to getWrappedService()
 void setBeanIdentifier(String beanIdentifier)
          Sets the Spring bean ID for this bean.
 void setWrappedService(ShoppingCategoryLocalService shoppingCategoryLocalService)
           
 void setWrappedShoppingCategoryLocalService(ShoppingCategoryLocalService shoppingCategoryLocalService)
          Deprecated. Renamed to setWrappedService(com.liferay.portlet.shopping.service.ShoppingCategoryLocalService)
 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 or adds it if it does not yet exist.
 ShoppingCategory updateShoppingCategory(ShoppingCategory shoppingCategory, boolean merge)
          Updates the shopping category in the database or adds it if it does not yet exist.
 
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
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 ShoppingCategory 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
Returns:
the shopping category that was removed
Throws:
PortalException - if a shopping category with the primary key could not be found
SystemException - if a system exception occurred

deleteShoppingCategory

public ShoppingCategory 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
Returns:
the shopping category that was removed
Throws:
SystemException - if a system exception occurred

dynamicQuery

public DynamicQuery dynamicQuery()
Specified by:
dynamicQuery in interface ShoppingCategoryLocalService

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
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
start - the lower bound of the range of model instances
end - the upper bound of the range of model instances (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
start - the lower bound of the range of model instances
end - the upper bound of the range of model instances (not inclusive)
orderByComparator - the comparator to order the results by (optionally null)
Returns:
the ordered range of matching rows
Throws:
SystemException - if a system exception occurred

dynamicQueryCount

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

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

fetchShoppingCategory

public ShoppingCategory fetchShoppingCategory(long categoryId)
                                       throws SystemException
Specified by:
fetchShoppingCategory in interface ShoppingCategoryLocalService
Throws:
SystemException

getShoppingCategory

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

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

getPersistedModel

public PersistedModel getPersistedModel(Serializable primaryKeyObj)
                                 throws PortalException,
                                        SystemException
Specified by:
getPersistedModel in interface PersistedModelLocalService
Specified by:
getPersistedModel in interface ShoppingCategoryLocalService
Throws:
PortalException
SystemException

getShoppingCategories

public List<ShoppingCategory> getShoppingCategories(int start,
                                                    int end)
                                             throws SystemException
Returns 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
end - the upper bound of the range of shopping categories (not inclusive)
Returns:
the range of shopping categories
Throws:
SystemException - if a system exception occurred

getShoppingCategoriesCount

public int getShoppingCategoriesCount()
                               throws SystemException
Returns 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 or adds it if it does not yet exist. Also notifies the appropriate model listeners.

Specified by:
updateShoppingCategory in interface ShoppingCategoryLocalService
Parameters:
shoppingCategory - the shopping category
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 or adds it if it does not yet exist. Also notifies the appropriate model listeners.

Specified by:
updateShoppingCategory in interface ShoppingCategoryLocalService
Parameters:
shoppingCategory - the shopping category
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

getBeanIdentifier

public String getBeanIdentifier()
Returns the Spring bean ID for this bean.

Specified by:
getBeanIdentifier in interface ShoppingCategoryLocalService
Returns:
the Spring bean ID for this bean

setBeanIdentifier

public void setBeanIdentifier(String beanIdentifier)
Sets the Spring bean ID for this bean.

Specified by:
setBeanIdentifier in interface ShoppingCategoryLocalService
Parameters:
beanIdentifier - the Spring bean ID for this bean

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 addGroupPermissions,
                                 boolean addGuestPermissions)
                          throws PortalException,
                                 SystemException
Specified by:
addCategoryResources in interface ShoppingCategoryLocalService
Throws:
PortalException
SystemException

addCategoryResources

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

addCategoryResources

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

addCategoryResources

public void addCategoryResources(ShoppingCategory category,
                                 String[] groupPermissions,
                                 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()
Deprecated. Renamed to getWrappedService()


setWrappedShoppingCategoryLocalService

public void setWrappedShoppingCategoryLocalService(ShoppingCategoryLocalService shoppingCategoryLocalService)
Deprecated. Renamed to setWrappedService(com.liferay.portlet.shopping.service.ShoppingCategoryLocalService)


getWrappedService

public ShoppingCategoryLocalService getWrappedService()
Specified by:
getWrappedService in interface ServiceWrapper<ShoppingCategoryLocalService>

setWrappedService

public void setWrappedService(ShoppingCategoryLocalService shoppingCategoryLocalService)
Specified by:
setWrappedService in interface ServiceWrapper<ShoppingCategoryLocalService>

Liferay 6.1.2-ce-ga3