|
Liferay 6.2.0-ce-m3 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectcom.liferay.portlet.shopping.service.ShoppingCategoryLocalServiceWrapper
public class ShoppingCategoryLocalServiceWrapper
This class is a wrapper for ShoppingCategoryLocalService.
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. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public ShoppingCategoryLocalServiceWrapper(ShoppingCategoryLocalService shoppingCategoryLocalService)
| Method Detail |
|---|
public ShoppingCategory addShoppingCategory(ShoppingCategory shoppingCategory)
throws SystemException
addShoppingCategory in interface ShoppingCategoryLocalServiceshoppingCategory - the shopping category
SystemException - if a system exception occurredpublic ShoppingCategory createShoppingCategory(long categoryId)
createShoppingCategory in interface ShoppingCategoryLocalServicecategoryId - the primary key for the new shopping category
public ShoppingCategory deleteShoppingCategory(long categoryId)
throws PortalException,
SystemException
deleteShoppingCategory in interface ShoppingCategoryLocalServicecategoryId - the primary key of the shopping category
PortalException - if a shopping category with the primary key could not be found
SystemException - if a system exception occurred
public ShoppingCategory deleteShoppingCategory(ShoppingCategory shoppingCategory)
throws SystemException
deleteShoppingCategory in interface ShoppingCategoryLocalServiceshoppingCategory - the shopping category
SystemException - if a system exception occurredpublic DynamicQuery dynamicQuery()
dynamicQuery in interface ShoppingCategoryLocalService
public List dynamicQuery(DynamicQuery dynamicQuery)
throws SystemException
dynamicQuery in interface ShoppingCategoryLocalServicedynamicQuery - the dynamic query
SystemException - if a system exception occurred
public List dynamicQuery(DynamicQuery dynamicQuery,
int start,
int end)
throws SystemException
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 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.
dynamicQuery in interface ShoppingCategoryLocalServicedynamicQuery - the dynamic querystart - the lower bound of the range of model instancesend - the upper bound of the range of model instances (not inclusive)
SystemException - if a system exception occurred
public List dynamicQuery(DynamicQuery dynamicQuery,
int start,
int end,
OrderByComparator orderByComparator)
throws SystemException
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 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.
dynamicQuery in interface ShoppingCategoryLocalServicedynamicQuery - the dynamic querystart - the lower bound of the range of model instancesend - the upper bound of the range of model instances (not inclusive)orderByComparator - the comparator to order the results by (optionally null)
SystemException - if a system exception occurred
public long dynamicQueryCount(DynamicQuery dynamicQuery)
throws SystemException
dynamicQueryCount in interface ShoppingCategoryLocalServicedynamicQuery - the dynamic query
SystemException - if a system exception occurred
public ShoppingCategory fetchShoppingCategory(long categoryId)
throws SystemException
fetchShoppingCategory in interface ShoppingCategoryLocalServiceSystemException
public ShoppingCategory getShoppingCategory(long categoryId)
throws PortalException,
SystemException
getShoppingCategory in interface ShoppingCategoryLocalServicecategoryId - the primary key of the shopping category
PortalException - if a shopping category with the primary key could not be found
SystemException - if a system exception occurred
public PersistedModel getPersistedModel(Serializable primaryKeyObj)
throws PortalException,
SystemException
getPersistedModel in interface PersistedModelLocalServicegetPersistedModel in interface ShoppingCategoryLocalServicePortalException
SystemException
public List<ShoppingCategory> getShoppingCategories(int start,
int end)
throws SystemException
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 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.
getShoppingCategories in interface ShoppingCategoryLocalServicestart - the lower bound of the range of shopping categoriesend - the upper bound of the range of shopping categories (not inclusive)
SystemException - if a system exception occurred
public int getShoppingCategoriesCount()
throws SystemException
getShoppingCategoriesCount in interface ShoppingCategoryLocalServiceSystemException - if a system exception occurred
public ShoppingCategory updateShoppingCategory(ShoppingCategory shoppingCategory)
throws SystemException
updateShoppingCategory in interface ShoppingCategoryLocalServiceshoppingCategory - the shopping category
SystemException - if a system exception occurredpublic String getBeanIdentifier()
getBeanIdentifier in interface ShoppingCategoryLocalServicepublic void setBeanIdentifier(String beanIdentifier)
setBeanIdentifier in interface ShoppingCategoryLocalServicebeanIdentifier - the Spring bean ID for this bean
public ShoppingCategory addCategory(long userId,
long parentCategoryId,
String name,
String description,
ServiceContext serviceContext)
throws PortalException,
SystemException
addCategory in interface ShoppingCategoryLocalServicePortalException
SystemException
public void addCategoryResources(long categoryId,
boolean addGroupPermissions,
boolean addGuestPermissions)
throws PortalException,
SystemException
addCategoryResources in interface ShoppingCategoryLocalServicePortalException
SystemException
public void addCategoryResources(long categoryId,
String[] groupPermissions,
String[] guestPermissions)
throws PortalException,
SystemException
addCategoryResources in interface ShoppingCategoryLocalServicePortalException
SystemException
public void addCategoryResources(ShoppingCategory category,
boolean addGroupPermissions,
boolean addGuestPermissions)
throws PortalException,
SystemException
addCategoryResources in interface ShoppingCategoryLocalServicePortalException
SystemException
public void addCategoryResources(ShoppingCategory category,
String[] groupPermissions,
String[] guestPermissions)
throws PortalException,
SystemException
addCategoryResources in interface ShoppingCategoryLocalServicePortalException
SystemException
public void deleteCategories(long groupId)
throws PortalException,
SystemException
deleteCategories in interface ShoppingCategoryLocalServicePortalException
SystemException
public void deleteCategory(long categoryId)
throws PortalException,
SystemException
deleteCategory in interface ShoppingCategoryLocalServicePortalException
SystemException
public void deleteCategory(ShoppingCategory category)
throws PortalException,
SystemException
deleteCategory in interface ShoppingCategoryLocalServicePortalException
SystemException
public List<ShoppingCategory> getCategories(long groupId)
throws SystemException
getCategories in interface ShoppingCategoryLocalServiceSystemException
public List<ShoppingCategory> getCategories(long groupId,
long parentCategoryId,
int start,
int end)
throws SystemException
getCategories in interface ShoppingCategoryLocalServiceSystemException
public int getCategoriesCount(long groupId,
long parentCategoryId)
throws SystemException
getCategoriesCount in interface ShoppingCategoryLocalServiceSystemException
public ShoppingCategory getCategory(long categoryId)
throws PortalException,
SystemException
getCategory in interface ShoppingCategoryLocalServicePortalException
SystemException
public List<ShoppingCategory> getParentCategories(long categoryId)
throws PortalException,
SystemException
getParentCategories in interface ShoppingCategoryLocalServicePortalException
SystemException
public List<ShoppingCategory> getParentCategories(ShoppingCategory category)
throws PortalException,
SystemException
getParentCategories in interface ShoppingCategoryLocalServicePortalException
SystemException
public ShoppingCategory getParentCategory(ShoppingCategory category)
throws PortalException,
SystemException
getParentCategory in interface ShoppingCategoryLocalServicePortalException
SystemException
public void getSubcategoryIds(List<Long> categoryIds,
long groupId,
long categoryId)
throws SystemException
getSubcategoryIds in interface ShoppingCategoryLocalServiceSystemException
public ShoppingCategory updateCategory(long categoryId,
long parentCategoryId,
String name,
String description,
boolean mergeWithParentCategory,
ServiceContext serviceContext)
throws PortalException,
SystemException
updateCategory in interface ShoppingCategoryLocalServicePortalException
SystemExceptionpublic ShoppingCategoryLocalService getWrappedShoppingCategoryLocalService()
getWrappedService()
public void setWrappedShoppingCategoryLocalService(ShoppingCategoryLocalService shoppingCategoryLocalService)
setWrappedService(com.liferay.portlet.shopping.service.ShoppingCategoryLocalService)
public ShoppingCategoryLocalService getWrappedService()
getWrappedService in interface ServiceWrapper<ShoppingCategoryLocalService>public void setWrappedService(ShoppingCategoryLocalService shoppingCategoryLocalService)
setWrappedService in interface ServiceWrapper<ShoppingCategoryLocalService>
|
Liferay 6.2.0-ce-m3 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||