Liferay 6.1.2-ce-ga3

com.liferay.portlet.messageboards.service
Class MBCategoryLocalServiceWrapper

java.lang.Object
  extended by com.liferay.portlet.messageboards.service.MBCategoryLocalServiceWrapper
All Implemented Interfaces:
BaseLocalService, PersistedModelLocalService, ServiceWrapper<MBCategoryLocalService>, MBCategoryLocalService

public class MBCategoryLocalServiceWrapper
extends Object
implements MBCategoryLocalService, ServiceWrapper<MBCategoryLocalService>

This class is a wrapper for MBCategoryLocalService.

See Also:
MBCategoryLocalService

Constructor Summary
MBCategoryLocalServiceWrapper(MBCategoryLocalService mbCategoryLocalService)
           
 
Method Summary
 MBCategory addCategory(long userId, long parentCategoryId, String name, String description, String displayStyle, 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 allowAnonymous, boolean mailingListActive, ServiceContext serviceContext)
           
 void addCategoryResources(long categoryId, boolean addGroupPermissions, boolean addGuestPermissions)
           
 void addCategoryResources(long categoryId, String[] groupPermissions, String[] guestPermissions)
           
 void addCategoryResources(MBCategory category, boolean addGroupPermissions, boolean addGuestPermissions)
           
 void addCategoryResources(MBCategory category, String[] groupPermissions, 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)
           
 MBCategory deleteMBCategory(long categoryId)
          Deletes the message boards category with the primary key from the database.
 MBCategory deleteMBCategory(MBCategory mbCategory)
          Deletes the message boards 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.
 MBCategory fetchMBCategory(long categoryId)
           
 String getBeanIdentifier()
          Returns the Spring bean ID for this bean.
 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)
           
 List<Object> getCategoriesAndThreads(long groupId, long categoryId)
           
 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)
          Returns a range of all the message boards categories.
 int getMBCategoriesCount()
          Returns the number of message boards categories.
 MBCategory getMBCategory(long categoryId)
          Returns the message boards category with the primary key.
 MBCategory getMBCategoryByUuidAndGroupId(String uuid, long groupId)
          Returns the message boards category with the UUID in the group.
 PersistedModel getPersistedModel(Serializable primaryKeyObj)
           
 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()
          Deprecated. Renamed to getWrappedService()
 MBCategoryLocalService getWrappedService()
           
 void setBeanIdentifier(String beanIdentifier)
          Sets the Spring bean ID for this bean.
 void setWrappedMBCategoryLocalService(MBCategoryLocalService mbCategoryLocalService)
          Deprecated. Renamed to setWrappedService(com.liferay.portlet.messageboards.service.MBCategoryLocalService)
 void setWrappedService(MBCategoryLocalService mbCategoryLocalService)
           
 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 displayStyle, 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 allowAnonymous, boolean mailingListActive, boolean mergeWithParentCategory, ServiceContext serviceContext)
           
 MBCategory updateMBCategory(MBCategory mbCategory)
          Updates the message boards category in the database or adds it if it does not yet exist.
 MBCategory updateMBCategory(MBCategory mbCategory, boolean merge)
          Updates the message boards 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

MBCategoryLocalServiceWrapper

public MBCategoryLocalServiceWrapper(MBCategoryLocalService mbCategoryLocalService)
Method Detail

addMBCategory

public MBCategory addMBCategory(MBCategory mbCategory)
                         throws SystemException
Adds the message boards category to the database. Also notifies the appropriate model listeners.

Specified by:
addMBCategory in interface MBCategoryLocalService
Parameters:
mbCategory - the message boards category
Returns:
the message boards category that was added
Throws:
SystemException - if a system exception occurred

createMBCategory

public MBCategory createMBCategory(long categoryId)
Creates a new message boards category with the primary key. Does not add the message boards category to the database.

Specified by:
createMBCategory in interface MBCategoryLocalService
Parameters:
categoryId - the primary key for the new message boards category
Returns:
the new message boards category

deleteMBCategory

public MBCategory deleteMBCategory(long categoryId)
                            throws PortalException,
                                   SystemException
Deletes the message boards category with the primary key from the database. Also notifies the appropriate model listeners.

Specified by:
deleteMBCategory in interface MBCategoryLocalService
Parameters:
categoryId - the primary key of the message boards category
Returns:
the message boards category that was removed
Throws:
PortalException - if a message boards category with the primary key could not be found
SystemException - if a system exception occurred

deleteMBCategory

public MBCategory deleteMBCategory(MBCategory mbCategory)
                            throws SystemException
Deletes the message boards category from the database. Also notifies the appropriate model listeners.

Specified by:
deleteMBCategory in interface MBCategoryLocalService
Parameters:
mbCategory - the message boards category
Returns:
the message boards category that was removed
Throws:
SystemException - if a system exception occurred

dynamicQuery

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

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 MBCategoryLocalService
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 MBCategoryLocalService
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 MBCategoryLocalService
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 MBCategoryLocalService
Parameters:
dynamicQuery - the dynamic query
Returns:
the number of rows that match the dynamic query
Throws:
SystemException - if a system exception occurred

fetchMBCategory

public MBCategory fetchMBCategory(long categoryId)
                           throws SystemException
Specified by:
fetchMBCategory in interface MBCategoryLocalService
Throws:
SystemException

getMBCategory

public MBCategory getMBCategory(long categoryId)
                         throws PortalException,
                                SystemException
Returns the message boards category with the primary key.

Specified by:
getMBCategory in interface MBCategoryLocalService
Parameters:
categoryId - the primary key of the message boards category
Returns:
the message boards category
Throws:
PortalException - if a message boards 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 MBCategoryLocalService
Throws:
PortalException
SystemException

getMBCategoryByUuidAndGroupId

public MBCategory getMBCategoryByUuidAndGroupId(String uuid,
                                                long groupId)
                                         throws PortalException,
                                                SystemException
Returns the message boards category with the UUID in the group.

Specified by:
getMBCategoryByUuidAndGroupId in interface MBCategoryLocalService
Parameters:
uuid - the UUID of message boards category
groupId - the group id of the message boards category
Returns:
the message boards category
Throws:
PortalException - if a message boards category with the UUID in the group could not be found
SystemException - if a system exception occurred

getMBCategories

public List<MBCategory> getMBCategories(int start,
                                        int end)
                                 throws SystemException
Returns a range of all the message boards 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:
getMBCategories in interface MBCategoryLocalService
Parameters:
start - the lower bound of the range of message boards categories
end - the upper bound of the range of message boards categories (not inclusive)
Returns:
the range of message boards categories
Throws:
SystemException - if a system exception occurred

getMBCategoriesCount

public int getMBCategoriesCount()
                         throws SystemException
Returns the number of message boards categories.

Specified by:
getMBCategoriesCount in interface MBCategoryLocalService
Returns:
the number of message boards categories
Throws:
SystemException - if a system exception occurred

updateMBCategory

public MBCategory updateMBCategory(MBCategory mbCategory)
                            throws SystemException
Updates the message boards category in the database or adds it if it does not yet exist. Also notifies the appropriate model listeners.

Specified by:
updateMBCategory in interface MBCategoryLocalService
Parameters:
mbCategory - the message boards category
Returns:
the message boards category that was updated
Throws:
SystemException - if a system exception occurred

updateMBCategory

public MBCategory updateMBCategory(MBCategory mbCategory,
                                   boolean merge)
                            throws SystemException
Updates the message boards category in the database or adds it if it does not yet exist. Also notifies the appropriate model listeners.

Specified by:
updateMBCategory in interface MBCategoryLocalService
Parameters:
mbCategory - the message boards category
merge - 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.
Returns:
the message boards 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 MBCategoryLocalService
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 MBCategoryLocalService
Parameters:
beanIdentifier - the Spring bean ID for this bean

addCategory

public MBCategory addCategory(long userId,
                              long parentCategoryId,
                              String name,
                              String description,
                              String displayStyle,
                              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 allowAnonymous,
                              boolean mailingListActive,
                              ServiceContext serviceContext)
                       throws PortalException,
                              SystemException
Specified by:
addCategory in interface MBCategoryLocalService
Throws:
PortalException
SystemException

addCategoryResources

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

addCategoryResources

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

addCategoryResources

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

addCategoryResources

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

deleteCategories

public void deleteCategories(long groupId)
                      throws PortalException,
                             SystemException
Specified by:
deleteCategories in interface MBCategoryLocalService
Throws:
PortalException
SystemException

deleteCategory

public void deleteCategory(long categoryId)
                    throws PortalException,
                           SystemException
Specified by:
deleteCategory in interface MBCategoryLocalService
Throws:
PortalException
SystemException

deleteCategory

public void deleteCategory(MBCategory category)
                    throws PortalException,
                           SystemException
Specified by:
deleteCategory in interface MBCategoryLocalService
Throws:
PortalException
SystemException

getCategories

public List<MBCategory> getCategories(long groupId)
                               throws SystemException
Specified by:
getCategories in interface MBCategoryLocalService
Throws:
SystemException

getCategories

public List<MBCategory> getCategories(long groupId,
                                      long parentCategoryId,
                                      int start,
                                      int end)
                               throws SystemException
Specified by:
getCategories in interface MBCategoryLocalService
Throws:
SystemException

getCategories

public List<MBCategory> getCategories(long groupId,
                                      long[] parentCategoryIds,
                                      int start,
                                      int end)
                               throws SystemException
Specified by:
getCategories in interface MBCategoryLocalService
Throws:
SystemException

getCategoriesAndThreads

public List<Object> getCategoriesAndThreads(long groupId,
                                            long categoryId)
                                     throws SystemException
Specified by:
getCategoriesAndThreads in interface MBCategoryLocalService
Throws:
SystemException

getCategoriesCount

public int getCategoriesCount(long groupId)
                       throws SystemException
Specified by:
getCategoriesCount in interface MBCategoryLocalService
Throws:
SystemException

getCategoriesCount

public int getCategoriesCount(long groupId,
                              long parentCategoryId)
                       throws SystemException
Specified by:
getCategoriesCount in interface MBCategoryLocalService
Throws:
SystemException

getCategoriesCount

public int getCategoriesCount(long groupId,
                              long[] parentCategoryIds)
                       throws SystemException
Specified by:
getCategoriesCount in interface MBCategoryLocalService
Throws:
SystemException

getCategory

public MBCategory getCategory(long categoryId)
                       throws PortalException,
                              SystemException
Specified by:
getCategory in interface MBCategoryLocalService
Throws:
PortalException
SystemException

getCompanyCategories

public List<MBCategory> getCompanyCategories(long companyId,
                                             int start,
                                             int end)
                                      throws SystemException
Specified by:
getCompanyCategories in interface MBCategoryLocalService
Throws:
SystemException

getCompanyCategoriesCount

public int getCompanyCategoriesCount(long companyId)
                              throws SystemException
Specified by:
getCompanyCategoriesCount in interface MBCategoryLocalService
Throws:
SystemException

getSubcategoryIds

public List<Long> getSubcategoryIds(List<Long> categoryIds,
                                    long groupId,
                                    long categoryId)
                             throws SystemException
Specified by:
getSubcategoryIds in interface MBCategoryLocalService
Throws:
SystemException

getSubscribedCategories

public List<MBCategory> getSubscribedCategories(long groupId,
                                                long userId,
                                                int start,
                                                int end)
                                         throws SystemException
Specified by:
getSubscribedCategories in interface MBCategoryLocalService
Throws:
SystemException

getSubscribedCategoriesCount

public int getSubscribedCategoriesCount(long groupId,
                                        long userId)
                                 throws SystemException
Specified by:
getSubscribedCategoriesCount in interface MBCategoryLocalService
Throws:
SystemException

subscribeCategory

public void subscribeCategory(long userId,
                              long groupId,
                              long categoryId)
                       throws PortalException,
                              SystemException
Specified by:
subscribeCategory in interface MBCategoryLocalService
Throws:
PortalException
SystemException

unsubscribeCategory

public void unsubscribeCategory(long userId,
                                long groupId,
                                long categoryId)
                         throws PortalException,
                                SystemException
Specified by:
unsubscribeCategory in interface MBCategoryLocalService
Throws:
PortalException
SystemException

updateCategory

public MBCategory updateCategory(long categoryId,
                                 long parentCategoryId,
                                 String name,
                                 String description,
                                 String displayStyle,
                                 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 allowAnonymous,
                                 boolean mailingListActive,
                                 boolean mergeWithParentCategory,
                                 ServiceContext serviceContext)
                          throws PortalException,
                                 SystemException
Specified by:
updateCategory in interface MBCategoryLocalService
Throws:
PortalException
SystemException

getWrappedMBCategoryLocalService

public MBCategoryLocalService getWrappedMBCategoryLocalService()
Deprecated. Renamed to getWrappedService()


setWrappedMBCategoryLocalService

public void setWrappedMBCategoryLocalService(MBCategoryLocalService mbCategoryLocalService)
Deprecated. Renamed to setWrappedService(com.liferay.portlet.messageboards.service.MBCategoryLocalService)


getWrappedService

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

setWrappedService

public void setWrappedService(MBCategoryLocalService mbCategoryLocalService)
Specified by:
setWrappedService in interface ServiceWrapper<MBCategoryLocalService>

Liferay 6.1.2-ce-ga3