|
Liferay 6.0.5 | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object com.liferay.portlet.messageboards.service.MBCategoryLocalServiceWrapper
public class MBCategoryLocalServiceWrapper
This class is a wrapper for MBCategoryLocalService
.
MBCategoryLocalService
Constructor Summary | |
---|---|
MBCategoryLocalServiceWrapper(MBCategoryLocalService mbCategoryLocalService)
|
Method Summary | |
---|---|
MBCategory |
addCategory(long userId,
long parentCategoryId,
String name,
String description,
String emailAddress,
String inProtocol,
String inServerName,
int inServerPort,
boolean inUseSSL,
String inUserName,
String inPassword,
int inReadInterval,
String outEmailAddress,
boolean outCustom,
String outServerName,
int outServerPort,
boolean outUseSSL,
String outUserName,
String outPassword,
boolean mailingListActive,
ServiceContext serviceContext)
|
void |
addCategoryResources(long categoryId,
boolean addCommunityPermissions,
boolean addGuestPermissions)
|
void |
addCategoryResources(long categoryId,
String[] communityPermissions,
String[] guestPermissions)
|
void |
addCategoryResources(MBCategory category,
boolean addCommunityPermissions,
boolean addGuestPermissions)
|
void |
addCategoryResources(MBCategory category,
String[] communityPermissions,
String[] guestPermissions)
|
MBCategory |
addMBCategory(MBCategory mbCategory)
Adds the message boards category to the database. |
MBCategory |
createMBCategory(long categoryId)
Creates a new message boards category with the primary key. |
void |
deleteCategories(long groupId)
|
void |
deleteCategory(long categoryId)
|
void |
deleteCategory(MBCategory category)
|
void |
deleteMBCategory(long categoryId)
Deletes the message boards category with the primary key from the database. |
void |
deleteMBCategory(MBCategory mbCategory)
Deletes the message boards 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<MBCategory> |
getCategories(long groupId)
|
List<MBCategory> |
getCategories(long groupId,
long[] parentCategoryIds,
int start,
int end)
|
List<MBCategory> |
getCategories(long groupId,
long parentCategoryId,
int start,
int end)
|
int |
getCategoriesCount(long groupId)
|
int |
getCategoriesCount(long groupId,
long parentCategoryId)
|
int |
getCategoriesCount(long groupId,
long[] parentCategoryIds)
|
MBCategory |
getCategory(long categoryId)
|
List<MBCategory> |
getCompanyCategories(long companyId,
int start,
int end)
|
int |
getCompanyCategoriesCount(long companyId)
|
List<MBCategory> |
getMBCategories(int start,
int end)
Gets a range of all the message boards categories. |
int |
getMBCategoriesCount()
Gets the number of message boards categories. |
MBCategory |
getMBCategory(long categoryId)
Gets the message boards category with the primary key. |
MBCategory |
getMBCategoryByUuidAndGroupId(String uuid,
long groupId)
Gets the message boards category with the UUID and group id. |
List<Long> |
getSubcategoryIds(List<Long> categoryIds,
long groupId,
long categoryId)
|
List<MBCategory> |
getSubscribedCategories(long groupId,
long userId,
int start,
int end)
|
int |
getSubscribedCategoriesCount(long groupId,
long userId)
|
MBCategoryLocalService |
getWrappedMBCategoryLocalService()
|
void |
subscribeCategory(long userId,
long groupId,
long categoryId)
|
void |
unsubscribeCategory(long userId,
long groupId,
long categoryId)
|
MBCategory |
updateCategory(long categoryId,
long parentCategoryId,
String name,
String description,
String emailAddress,
String inProtocol,
String inServerName,
int inServerPort,
boolean inUseSSL,
String inUserName,
String inPassword,
int inReadInterval,
String outEmailAddress,
boolean outCustom,
String outServerName,
int outServerPort,
boolean outUseSSL,
String outUserName,
String outPassword,
boolean mailingListActive,
boolean mergeWithParentCategory,
ServiceContext serviceContext)
|
MBCategory |
updateMBCategory(MBCategory mbCategory)
Updates the message boards category in the database. |
MBCategory |
updateMBCategory(MBCategory mbCategory,
boolean merge)
Updates the message boards category in the database. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public MBCategoryLocalServiceWrapper(MBCategoryLocalService mbCategoryLocalService)
Method Detail |
---|
public MBCategory addMBCategory(MBCategory mbCategory) throws SystemException
addMBCategory
in interface MBCategoryLocalService
mbCategory
- the message boards category to add
SystemException
- if a system exception occurredpublic MBCategory createMBCategory(long categoryId)
createMBCategory
in interface MBCategoryLocalService
categoryId
- the primary key for the new message boards category
public void deleteMBCategory(long categoryId) throws PortalException, SystemException
deleteMBCategory
in interface MBCategoryLocalService
categoryId
- the primary key of the message boards category to delete
PortalException
- if a message boards category with the primary key could not be found
SystemException
- if a system exception occurredpublic void deleteMBCategory(MBCategory mbCategory) throws SystemException
deleteMBCategory
in interface MBCategoryLocalService
mbCategory
- the message boards category to delete
SystemException
- if a system exception occurredpublic List dynamicQuery(DynamicQuery dynamicQuery) throws SystemException
dynamicQuery
in interface MBCategoryLocalService
dynamicQuery
- the dynamic query to search with
SystemException
- if a system exception occurredpublic 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
in interface MBCategoryLocalService
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 occurredpublic 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
in interface MBCategoryLocalService
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 occurredpublic long dynamicQueryCount(DynamicQuery dynamicQuery) throws SystemException
dynamicQueryCount
in interface MBCategoryLocalService
dynamicQuery
- the dynamic query to search with
SystemException
- if a system exception occurredpublic MBCategory getMBCategory(long categoryId) throws PortalException, SystemException
getMBCategory
in interface MBCategoryLocalService
categoryId
- the primary key of the message boards category to get
PortalException
- if a message boards category with the primary key could not be found
SystemException
- if a system exception occurredpublic MBCategory getMBCategoryByUuidAndGroupId(String uuid, long groupId) throws PortalException, SystemException
getMBCategoryByUuidAndGroupId
in interface MBCategoryLocalService
uuid
- the UUID of message boards category to getgroupId
- the group id of the message boards category to get
PortalException
- if a message boards category with the UUID and group id could not be found
SystemException
- if a system exception occurredpublic List<MBCategory> getMBCategories(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.
getMBCategories
in interface MBCategoryLocalService
start
- the lower bound of the range of message boards categories to returnend
- the upper bound of the range of message boards categories to return (not inclusive)
SystemException
- if a system exception occurredpublic int getMBCategoriesCount() throws SystemException
getMBCategoriesCount
in interface MBCategoryLocalService
SystemException
- if a system exception occurredpublic MBCategory updateMBCategory(MBCategory mbCategory) throws SystemException
updateMBCategory
in interface MBCategoryLocalService
mbCategory
- the message boards category to update
SystemException
- if a system exception occurredpublic MBCategory updateMBCategory(MBCategory mbCategory, boolean merge) throws SystemException
updateMBCategory
in interface MBCategoryLocalService
mbCategory
- the message boards category to updatemerge
- whether to merge the message boards 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 occurredpublic MBCategory addCategory(long userId, long parentCategoryId, String name, String description, String emailAddress, String inProtocol, String inServerName, int inServerPort, boolean inUseSSL, String inUserName, String inPassword, int inReadInterval, String outEmailAddress, boolean outCustom, String outServerName, int outServerPort, boolean outUseSSL, String outUserName, String outPassword, boolean mailingListActive, ServiceContext serviceContext) throws PortalException, SystemException
addCategory
in interface MBCategoryLocalService
PortalException
SystemException
public void addCategoryResources(long categoryId, boolean addCommunityPermissions, boolean addGuestPermissions) throws PortalException, SystemException
addCategoryResources
in interface MBCategoryLocalService
PortalException
SystemException
public void addCategoryResources(long categoryId, String[] communityPermissions, String[] guestPermissions) throws PortalException, SystemException
addCategoryResources
in interface MBCategoryLocalService
PortalException
SystemException
public void addCategoryResources(MBCategory category, boolean addCommunityPermissions, boolean addGuestPermissions) throws PortalException, SystemException
addCategoryResources
in interface MBCategoryLocalService
PortalException
SystemException
public void addCategoryResources(MBCategory category, String[] communityPermissions, String[] guestPermissions) throws PortalException, SystemException
addCategoryResources
in interface MBCategoryLocalService
PortalException
SystemException
public void deleteCategories(long groupId) throws PortalException, SystemException
deleteCategories
in interface MBCategoryLocalService
PortalException
SystemException
public void deleteCategory(long categoryId) throws PortalException, SystemException
deleteCategory
in interface MBCategoryLocalService
PortalException
SystemException
public void deleteCategory(MBCategory category) throws PortalException, SystemException
deleteCategory
in interface MBCategoryLocalService
PortalException
SystemException
public List<MBCategory> getCategories(long groupId) throws SystemException
getCategories
in interface MBCategoryLocalService
SystemException
public List<MBCategory> getCategories(long groupId, long parentCategoryId, int start, int end) throws SystemException
getCategories
in interface MBCategoryLocalService
SystemException
public List<MBCategory> getCategories(long groupId, long[] parentCategoryIds, int start, int end) throws SystemException
getCategories
in interface MBCategoryLocalService
SystemException
public int getCategoriesCount(long groupId) throws SystemException
getCategoriesCount
in interface MBCategoryLocalService
SystemException
public int getCategoriesCount(long groupId, long parentCategoryId) throws SystemException
getCategoriesCount
in interface MBCategoryLocalService
SystemException
public int getCategoriesCount(long groupId, long[] parentCategoryIds) throws SystemException
getCategoriesCount
in interface MBCategoryLocalService
SystemException
public MBCategory getCategory(long categoryId) throws PortalException, SystemException
getCategory
in interface MBCategoryLocalService
PortalException
SystemException
public List<MBCategory> getCompanyCategories(long companyId, int start, int end) throws SystemException
getCompanyCategories
in interface MBCategoryLocalService
SystemException
public int getCompanyCategoriesCount(long companyId) throws SystemException
getCompanyCategoriesCount
in interface MBCategoryLocalService
SystemException
public List<Long> getSubcategoryIds(List<Long> categoryIds, long groupId, long categoryId) throws SystemException
getSubcategoryIds
in interface MBCategoryLocalService
SystemException
public List<MBCategory> getSubscribedCategories(long groupId, long userId, int start, int end) throws SystemException
getSubscribedCategories
in interface MBCategoryLocalService
SystemException
public int getSubscribedCategoriesCount(long groupId, long userId) throws SystemException
getSubscribedCategoriesCount
in interface MBCategoryLocalService
SystemException
public void subscribeCategory(long userId, long groupId, long categoryId) throws PortalException, SystemException
subscribeCategory
in interface MBCategoryLocalService
PortalException
SystemException
public void unsubscribeCategory(long userId, long groupId, long categoryId) throws PortalException, SystemException
unsubscribeCategory
in interface MBCategoryLocalService
PortalException
SystemException
public MBCategory updateCategory(long categoryId, long parentCategoryId, String name, String description, String emailAddress, String inProtocol, String inServerName, int inServerPort, boolean inUseSSL, String inUserName, String inPassword, int inReadInterval, String outEmailAddress, boolean outCustom, String outServerName, int outServerPort, boolean outUseSSL, String outUserName, String outPassword, boolean mailingListActive, boolean mergeWithParentCategory, ServiceContext serviceContext) throws PortalException, SystemException
updateCategory
in interface MBCategoryLocalService
PortalException
SystemException
public MBCategoryLocalService getWrappedMBCategoryLocalService()
|
Liferay 6.0.5 | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |