Liferay 7.0-ce-m6

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

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

Provides 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)
           
 PersistedModel deletePersistedModel(PersistedModel persistedModel)
           
 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()
           
<T> List<T>
dynamicQuery(DynamicQuery dynamicQuery)
          Performs a dynamic query on the database and returns the matching rows.
<T> List<T>
dynamicQuery(DynamicQuery dynamicQuery, int start, int end)
          Performs a dynamic query on the database and returns a range of the matching rows.
<T> List<T>
dynamicQuery(DynamicQuery dynamicQuery, int start, int end, OrderByComparator<T> 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 matching the dynamic query.
 long dynamicQueryCount(DynamicQuery dynamicQuery, Projection projection)
          Returns the number of rows matching the dynamic query.
 ShoppingCategory fetchShoppingCategory(long categoryId)
           
 ActionableDynamicQuery getActionableDynamicQuery()
           
 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)
           
 ShoppingCategory getCategory(long groupId, String categoryName)
           
 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. As of 6.1.0, replaced by getWrappedService()
 void setBeanIdentifier(String beanIdentifier)
          Sets the Spring bean ID for this bean.
 void setWrappedService(ShoppingCategoryLocalService shoppingCategoryLocalService)
           
 void setWrappedShoppingCategoryLocalService(ShoppingCategoryLocalService shoppingCategoryLocalService)
          Deprecated. As of 6.1.0, replaced by 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.
 
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

addCategory

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

addCategoryResources

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

addCategoryResources

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

addCategoryResources

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

addCategoryResources

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

addShoppingCategory

public ShoppingCategory addShoppingCategory(ShoppingCategory shoppingCategory)
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

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

deleteCategories

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

deleteCategory

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

deleteCategory

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

deletePersistedModel

public PersistedModel deletePersistedModel(PersistedModel persistedModel)
                                    throws PortalException
Specified by:
deletePersistedModel in interface PersistedModelLocalService
Specified by:
deletePersistedModel in interface ShoppingCategoryLocalService
Throws:
PortalException

deleteShoppingCategory

public ShoppingCategory deleteShoppingCategory(long categoryId)
                                        throws PortalException
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

deleteShoppingCategory

public ShoppingCategory deleteShoppingCategory(ShoppingCategory shoppingCategory)
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

dynamicQuery

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

dynamicQuery

public <T> List<T> dynamicQuery(DynamicQuery dynamicQuery)
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

dynamicQuery

public <T> List<T> dynamicQuery(DynamicQuery dynamicQuery,
                                int start,
                                int end)
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. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil.ALL_POS), then the query will include the default ORDER BY logic from com.liferay.portlet.shopping.model.impl.ShoppingCategoryModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.

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

dynamicQuery

public <T> List<T> dynamicQuery(DynamicQuery dynamicQuery,
                                int start,
                                int end,
                                OrderByComparator<T> orderByComparator)
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. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil.ALL_POS), then the query will include the default ORDER BY logic from com.liferay.portlet.shopping.model.impl.ShoppingCategoryModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.

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

dynamicQueryCount

public long dynamicQueryCount(DynamicQuery dynamicQuery)
Returns the number of rows matching the dynamic query.

Specified by:
dynamicQueryCount in interface ShoppingCategoryLocalService
Parameters:
dynamicQuery - the dynamic query
Returns:
the number of rows matching the dynamic query

dynamicQueryCount

public long dynamicQueryCount(DynamicQuery dynamicQuery,
                              Projection projection)
Returns the number of rows matching the dynamic query.

Specified by:
dynamicQueryCount in interface ShoppingCategoryLocalService
Parameters:
dynamicQuery - the dynamic query
projection - the projection to apply to the query
Returns:
the number of rows matching the dynamic query

fetchShoppingCategory

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

getActionableDynamicQuery

public ActionableDynamicQuery getActionableDynamicQuery()
Specified by:
getActionableDynamicQuery in interface ShoppingCategoryLocalService

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

getCategories

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

getCategories

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

getCategoriesCount

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

getCategory

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

getCategory

public ShoppingCategory getCategory(long groupId,
                                    String categoryName)
Specified by:
getCategory in interface ShoppingCategoryLocalService

getParentCategories

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

getParentCategories

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

getParentCategory

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

getPersistedModel

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

getShoppingCategories

public List<ShoppingCategory> getShoppingCategories(int start,
                                                    int end)
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. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil.ALL_POS), then the query will include the default ORDER BY logic from com.liferay.portlet.shopping.model.impl.ShoppingCategoryModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.

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

getShoppingCategoriesCount

public int getShoppingCategoriesCount()
Returns the number of shopping categories.

Specified by:
getShoppingCategoriesCount in interface ShoppingCategoryLocalService
Returns:
the number of shopping categories

getShoppingCategory

public ShoppingCategory getShoppingCategory(long categoryId)
                                     throws PortalException
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

getSubcategoryIds

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

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

updateCategory

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

updateShoppingCategory

public ShoppingCategory updateShoppingCategory(ShoppingCategory shoppingCategory)
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

getWrappedShoppingCategoryLocalService

@Deprecated
public ShoppingCategoryLocalService getWrappedShoppingCategoryLocalService()
Deprecated. As of 6.1.0, replaced by getWrappedService()


setWrappedShoppingCategoryLocalService

@Deprecated
public void setWrappedShoppingCategoryLocalService(ShoppingCategoryLocalService shoppingCategoryLocalService)
Deprecated. As of 6.1.0, replaced by 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 7.0-ce-m6