|
Liferay 6.0.5 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
@Transactional(isolation=PORTAL,
rollbackFor={PortalException.class,SystemException.class})
public interface ShoppingCategoryLocalServiceThe interface for the shopping category local service.
Never modify or reference this interface directly. Always use ShoppingCategoryLocalServiceUtil to access the shopping category local service. Add custom service methods to ShoppingCategoryLocalServiceImpl and rerun ServiceBuilder to automatically copy the method declarations to this interface.
This is a local service. Methods of this service will not have security checks based on the propagated JAAS credentials because this service can only be accessed from within the same VM.
ShoppingCategoryLocalServiceUtil,
ShoppingCategoryLocalServiceBaseImpl,
ShoppingCategoryLocalServiceImpl| 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)
|
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. |
| Method Detail |
|---|
ShoppingCategory addShoppingCategory(ShoppingCategory shoppingCategory)
throws SystemException
shoppingCategory - the shopping category to add
SystemException - if a system exception occurredShoppingCategory createShoppingCategory(long categoryId)
categoryId - the primary key for the new shopping category
void deleteShoppingCategory(long categoryId)
throws PortalException,
SystemException
categoryId - the primary key of the shopping category to delete
PortalException - if a shopping category with the primary key could not be found
SystemException - if a system exception occurred
void deleteShoppingCategory(ShoppingCategory shoppingCategory)
throws SystemException
shoppingCategory - the shopping category to delete
SystemException - if a system exception occurred
List dynamicQuery(DynamicQuery dynamicQuery)
throws SystemException
dynamicQuery - the dynamic query to search with
SystemException - if a system exception occurred
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.
dynamicQuery - the dynamic query to search withstart - the lower bound of the range of model instances to returnend - the upper bound of the range of model instances to return (not inclusive)
SystemException - if a system exception occurred
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.
dynamicQuery - the dynamic query to search withstart - the lower bound of the range of model instances to returnend - the upper bound of the range of model instances to return (not inclusive)orderByComparator - the comparator to order the results by
SystemException - if a system exception occurred
long dynamicQueryCount(DynamicQuery dynamicQuery)
throws SystemException
dynamicQuery - the dynamic query to search with
SystemException - if a system exception occurred
@Transactional(propagation=SUPPORTS,
readOnly=true)
ShoppingCategory getShoppingCategory(long categoryId)
throws PortalException,
SystemException
categoryId - the primary key of the shopping category to get
PortalException - if a shopping category with the primary key could not be found
SystemException - if a system exception occurred
@Transactional(propagation=SUPPORTS,
readOnly=true)
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.
start - the lower bound of the range of shopping categories to returnend - the upper bound of the range of shopping categories to return (not inclusive)
SystemException - if a system exception occurred
@Transactional(propagation=SUPPORTS,
readOnly=true)
int getShoppingCategoriesCount()
throws SystemException
SystemException - if a system exception occurred
ShoppingCategory updateShoppingCategory(ShoppingCategory shoppingCategory)
throws SystemException
shoppingCategory - the shopping category to update
SystemException - if a system exception occurred
ShoppingCategory updateShoppingCategory(ShoppingCategory shoppingCategory,
boolean merge)
throws SystemException
shoppingCategory - the shopping category to updatemerge - 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.
SystemException - if a system exception occurred
ShoppingCategory addCategory(long userId,
long parentCategoryId,
String name,
String description,
ServiceContext serviceContext)
throws PortalException,
SystemException
PortalException
SystemException
void addCategoryResources(long categoryId,
boolean addCommunityPermissions,
boolean addGuestPermissions)
throws PortalException,
SystemException
PortalException
SystemException
void addCategoryResources(long categoryId,
String[] communityPermissions,
String[] guestPermissions)
throws PortalException,
SystemException
PortalException
SystemException
void addCategoryResources(ShoppingCategory category,
boolean addCommunityPermissions,
boolean addGuestPermissions)
throws PortalException,
SystemException
PortalException
SystemException
void addCategoryResources(ShoppingCategory category,
String[] communityPermissions,
String[] guestPermissions)
throws PortalException,
SystemException
PortalException
SystemException
void deleteCategories(long groupId)
throws PortalException,
SystemException
PortalException
SystemException
void deleteCategory(long categoryId)
throws PortalException,
SystemException
PortalException
SystemException
void deleteCategory(ShoppingCategory category)
throws PortalException,
SystemException
PortalException
SystemException
@Transactional(propagation=SUPPORTS,
readOnly=true)
List<ShoppingCategory> getCategories(long groupId)
throws SystemException
SystemException
@Transactional(propagation=SUPPORTS,
readOnly=true)
List<ShoppingCategory> getCategories(long groupId,
long parentCategoryId,
int start,
int end)
throws SystemException
SystemException
@Transactional(propagation=SUPPORTS,
readOnly=true)
int getCategoriesCount(long groupId,
long parentCategoryId)
throws SystemException
SystemException
@Transactional(propagation=SUPPORTS,
readOnly=true)
ShoppingCategory getCategory(long categoryId)
throws PortalException,
SystemException
PortalException
SystemException
@Transactional(propagation=SUPPORTS,
readOnly=true)
List<ShoppingCategory> getParentCategories(long categoryId)
throws PortalException,
SystemException
PortalException
SystemException
@Transactional(propagation=SUPPORTS,
readOnly=true)
List<ShoppingCategory> getParentCategories(ShoppingCategory category)
throws PortalException,
SystemException
PortalException
SystemException
@Transactional(propagation=SUPPORTS,
readOnly=true)
ShoppingCategory getParentCategory(ShoppingCategory category)
throws PortalException,
SystemException
PortalException
SystemException
@Transactional(propagation=SUPPORTS,
readOnly=true)
void getSubcategoryIds(List<Long> categoryIds,
long groupId,
long categoryId)
throws SystemException
SystemException
ShoppingCategory updateCategory(long categoryId,
long parentCategoryId,
String name,
String description,
boolean mergeWithParentCategory,
ServiceContext serviceContext)
throws PortalException,
SystemException
PortalException
SystemException
|
Liferay 6.0.5 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||