Interface MBCategoryLocalService

All Superinterfaces:
com.liferay.portal.kernel.service.BaseLocalService, com.liferay.portal.kernel.service.change.tracking.CTService<MBCategory>, com.liferay.portal.kernel.service.PersistedModelLocalService
All Known Implementing Classes:
MBCategoryLocalServiceWrapper

@CTAware @ProviderType @Transactional(isolation=PORTAL, rollbackFor={com.liferay.portal.kernel.exception.PortalException.class,com.liferay.portal.kernel.exception.SystemException.class}) public interface MBCategoryLocalService extends com.liferay.portal.kernel.service.BaseLocalService, com.liferay.portal.kernel.service.change.tracking.CTService<MBCategory>, com.liferay.portal.kernel.service.PersistedModelLocalService
Provides the local service interface for MBCategory. 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.
See Also:
Generated:
  • Method Details

    • addCategory

      MBCategory addCategory(String externalReferenceCode, long userId, long parentCategoryId, String name, String description, com.liferay.portal.kernel.service.ServiceContext serviceContext) throws com.liferay.portal.kernel.exception.PortalException
      Throws:
      com.liferay.portal.kernel.exception.PortalException
    • addCategory

      MBCategory addCategory(String externalReferenceCode, 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, com.liferay.portal.kernel.service.ServiceContext serviceContext) throws com.liferay.portal.kernel.exception.PortalException
      Throws:
      com.liferay.portal.kernel.exception.PortalException
    • addCategoryResources

      void addCategoryResources(long categoryId, boolean addGroupPermissions, boolean addGuestPermissions) throws com.liferay.portal.kernel.exception.PortalException
      Throws:
      com.liferay.portal.kernel.exception.PortalException
    • addCategoryResources

      void addCategoryResources(long categoryId, com.liferay.portal.kernel.service.permission.ModelPermissions modelPermissions) throws com.liferay.portal.kernel.exception.PortalException
      Throws:
      com.liferay.portal.kernel.exception.PortalException
    • addCategoryResources

      void addCategoryResources(MBCategory category, boolean addGroupPermissions, boolean addGuestPermissions) throws com.liferay.portal.kernel.exception.PortalException
      Throws:
      com.liferay.portal.kernel.exception.PortalException
    • addCategoryResources

      void addCategoryResources(MBCategory category, com.liferay.portal.kernel.service.permission.ModelPermissions modelPermissions) throws com.liferay.portal.kernel.exception.PortalException
      Throws:
      com.liferay.portal.kernel.exception.PortalException
    • addMBCategory

      @Indexable(type=REINDEX) MBCategory addMBCategory(MBCategory mbCategory)
      Adds the message boards category to the database. Also notifies the appropriate model listeners.

      Important: Inspect MBCategoryLocalServiceImpl for overloaded versions of the method. If provided, use these entry points to the API, as the implementation logic may require the additional parameters defined there.

      Parameters:
      mbCategory - the message boards category
      Returns:
      the message boards category that was added
    • createMBCategory

      @Transactional(enabled=false) MBCategory createMBCategory(long categoryId)
      Creates a new message boards category with the primary key. Does not add the message boards category to the database.
      Parameters:
      categoryId - the primary key for the new message boards category
      Returns:
      the new message boards category
    • createPersistedModel

      com.liferay.portal.kernel.model.PersistedModel createPersistedModel(Serializable primaryKeyObj) throws com.liferay.portal.kernel.exception.PortalException
      Specified by:
      createPersistedModel in interface com.liferay.portal.kernel.service.PersistedModelLocalService
      Throws:
      com.liferay.portal.kernel.exception.PortalException
    • deleteCategories

      void deleteCategories(long groupId) throws com.liferay.portal.kernel.exception.PortalException
      Throws:
      com.liferay.portal.kernel.exception.PortalException
    • deleteCategory

      void deleteCategory(long categoryId) throws com.liferay.portal.kernel.exception.PortalException
      Throws:
      com.liferay.portal.kernel.exception.PortalException
    • deleteCategory

      void deleteCategory(MBCategory category) throws com.liferay.portal.kernel.exception.PortalException
      Throws:
      com.liferay.portal.kernel.exception.PortalException
    • deleteCategory

      @SystemEvent(action=1, type=1) void deleteCategory(MBCategory category, boolean includeTrashedEntries) throws com.liferay.portal.kernel.exception.PortalException
      Throws:
      com.liferay.portal.kernel.exception.PortalException
    • deleteCategoryByExternalReferenceCode

      void deleteCategoryByExternalReferenceCode(String externalReferenceCode, long groupId) throws com.liferay.portal.kernel.exception.PortalException
      Throws:
      com.liferay.portal.kernel.exception.PortalException
    • deleteMBCategory

      @Indexable(type=DELETE) MBCategory deleteMBCategory(long categoryId) throws com.liferay.portal.kernel.exception.PortalException
      Deletes the message boards category with the primary key from the database. Also notifies the appropriate model listeners.

      Important: Inspect MBCategoryLocalServiceImpl for overloaded versions of the method. If provided, use these entry points to the API, as the implementation logic may require the additional parameters defined there.

      Parameters:
      categoryId - the primary key of the message boards category
      Returns:
      the message boards category that was removed
      Throws:
      com.liferay.portal.kernel.exception.PortalException - if a message boards category with the primary key could not be found
    • deleteMBCategory

      @Indexable(type=DELETE) MBCategory deleteMBCategory(MBCategory mbCategory)
      Deletes the message boards category from the database. Also notifies the appropriate model listeners.

      Important: Inspect MBCategoryLocalServiceImpl for overloaded versions of the method. If provided, use these entry points to the API, as the implementation logic may require the additional parameters defined there.

      Parameters:
      mbCategory - the message boards category
      Returns:
      the message boards category that was removed
    • deletePersistedModel

      com.liferay.portal.kernel.model.PersistedModel deletePersistedModel(com.liferay.portal.kernel.model.PersistedModel persistedModel) throws com.liferay.portal.kernel.exception.PortalException
      Specified by:
      deletePersistedModel in interface com.liferay.portal.kernel.service.PersistedModelLocalService
      Throws:
      com.liferay.portal.kernel.exception.PortalException
    • dslQuery

      @Transactional(propagation=SUPPORTS, readOnly=true) <T> T dslQuery(com.liferay.petra.sql.dsl.query.DSLQuery dslQuery)
      Specified by:
      dslQuery in interface com.liferay.portal.kernel.service.PersistedModelLocalService
    • dslQueryCount

      @Transactional(propagation=SUPPORTS, readOnly=true) int dslQueryCount(com.liferay.petra.sql.dsl.query.DSLQuery dslQuery)
      Specified by:
      dslQueryCount in interface com.liferay.portal.kernel.service.PersistedModelLocalService
    • dynamicQuery

      @Transactional(propagation=SUPPORTS, readOnly=true) com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery()
    • dynamicQuery

      @Transactional(propagation=SUPPORTS, readOnly=true) <T> List<T> dynamicQuery(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
      Performs a dynamic query on the database and returns the matching rows.
      Parameters:
      dynamicQuery - the dynamic query
      Returns:
      the matching rows
    • dynamicQuery

      @Transactional(propagation=SUPPORTS, readOnly=true) <T> List<T> dynamicQuery(com.liferay.portal.kernel.dao.orm.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 com.liferay.portal.kernel.dao.orm.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, then the query will include the default ORDER BY logic from com.liferay.message.boards.model.impl.MBCategoryModelImpl.

      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

      @Transactional(propagation=SUPPORTS, readOnly=true) <T> List<T> dynamicQuery(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start, int end, com.liferay.portal.kernel.util.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 com.liferay.portal.kernel.dao.orm.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, then the query will include the default ORDER BY logic from com.liferay.message.boards.model.impl.MBCategoryModelImpl.

      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

      @Transactional(propagation=SUPPORTS, readOnly=true) long dynamicQueryCount(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
      Returns the number of rows matching the dynamic query.
      Parameters:
      dynamicQuery - the dynamic query
      Returns:
      the number of rows matching the dynamic query
    • dynamicQueryCount

      @Transactional(propagation=SUPPORTS, readOnly=true) long dynamicQueryCount(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, com.liferay.portal.kernel.dao.orm.Projection projection)
      Returns the number of rows matching the dynamic query.
      Parameters:
      dynamicQuery - the dynamic query
      projection - the projection to apply to the query
      Returns:
      the number of rows matching the dynamic query
    • fetchMBCategory

      @Transactional(propagation=SUPPORTS, readOnly=true) MBCategory fetchMBCategory(long categoryId)
    • fetchMBCategory

      @Transactional(propagation=SUPPORTS, readOnly=true) MBCategory fetchMBCategory(long groupId, String friendlyURL)
    • fetchMBCategoryByExternalReferenceCode

      @Transactional(propagation=SUPPORTS, readOnly=true) MBCategory fetchMBCategoryByExternalReferenceCode(String externalReferenceCode, long groupId)
    • fetchMBCategoryByUuidAndGroupId

      @Transactional(propagation=SUPPORTS, readOnly=true) MBCategory fetchMBCategoryByUuidAndGroupId(String uuid, long groupId)
      Returns the message boards category matching the UUID and group.
      Parameters:
      uuid - the message boards category's UUID
      groupId - the primary key of the group
      Returns:
      the matching message boards category, or null if a matching message boards category could not be found
    • getActionableDynamicQuery

      @Transactional(propagation=SUPPORTS, readOnly=true) com.liferay.portal.kernel.dao.orm.ActionableDynamicQuery getActionableDynamicQuery()
    • getCategories

      @Transactional(propagation=SUPPORTS, readOnly=true) List<MBCategory> getCategories(long groupId)
    • getCategories

      @Transactional(propagation=SUPPORTS, readOnly=true) List<MBCategory> getCategories(long groupId, int status)
    • getCategories

      @Transactional(propagation=SUPPORTS, readOnly=true) List<MBCategory> getCategories(long groupId, long parentCategoryId, int start, int end)
    • getCategories

      @Transactional(propagation=SUPPORTS, readOnly=true) List<MBCategory> getCategories(long groupId, long parentCategoryId, int status, int start, int end)
    • getCategories

      @Transactional(propagation=SUPPORTS, readOnly=true) List<MBCategory> getCategories(long groupId, long excludedCategoryId, long parentCategoryId, int status, int start, int end)
    • getCategories

      @Transactional(propagation=SUPPORTS, readOnly=true) List<MBCategory> getCategories(long groupId, long[] parentCategoryIds, int start, int end)
    • getCategories

      @Transactional(propagation=SUPPORTS, readOnly=true) List<MBCategory> getCategories(long groupId, long[] parentCategoryIds, int status, int start, int end)
    • getCategories

      @Transactional(propagation=SUPPORTS, readOnly=true) List<MBCategory> getCategories(long groupId, long[] excludedCategoryIds, long[] parentCategoryIds, int status, int start, int end)
    • getCategoriesAndThreads

      @Transactional(propagation=SUPPORTS, readOnly=true) List<Object> getCategoriesAndThreads(long groupId, long categoryId)
    • getCategoriesAndThreads

      @Transactional(propagation=SUPPORTS, readOnly=true) List<Object> getCategoriesAndThreads(long groupId, long categoryId, int status)
    • getCategoriesAndThreads

      @Transactional(propagation=SUPPORTS, readOnly=true) List<Object> getCategoriesAndThreads(long groupId, long categoryId, int status, int start, int end)
    • getCategoriesAndThreadsCount

      @Transactional(propagation=SUPPORTS, readOnly=true) int getCategoriesAndThreadsCount(long groupId, long categoryId)
    • getCategoriesAndThreadsCount

      @Transactional(propagation=SUPPORTS, readOnly=true) int getCategoriesAndThreadsCount(long groupId, long categoryId, int status)
    • getCategoriesCount

      @Transactional(propagation=SUPPORTS, readOnly=true) int getCategoriesCount(long groupId)
    • getCategoriesCount

      @Transactional(propagation=SUPPORTS, readOnly=true) int getCategoriesCount(long groupId, int status)
    • getCategoriesCount

      @Transactional(propagation=SUPPORTS, readOnly=true) int getCategoriesCount(long groupId, long parentCategoryId)
    • getCategoriesCount

      @Transactional(propagation=SUPPORTS, readOnly=true) int getCategoriesCount(long groupId, long parentCategoryId, int status)
    • getCategoriesCount

      @Transactional(propagation=SUPPORTS, readOnly=true) int getCategoriesCount(long groupId, long excludedCategoryId, long parentCategoryId, int status)
    • getCategoriesCount

      @Transactional(propagation=SUPPORTS, readOnly=true) int getCategoriesCount(long groupId, long[] parentCategoryIds)
    • getCategoriesCount

      @Transactional(propagation=SUPPORTS, readOnly=true) int getCategoriesCount(long groupId, long[] parentCategoryIds, int status)
    • getCategoriesCount

      @Transactional(propagation=SUPPORTS, readOnly=true) int getCategoriesCount(long groupId, long[] excludedCategoryIds, long[] parentCategoryIds, int status)
    • getCategory

      @Transactional(propagation=SUPPORTS, readOnly=true) MBCategory getCategory(long categoryId) throws com.liferay.portal.kernel.exception.PortalException
      Throws:
      com.liferay.portal.kernel.exception.PortalException
    • getCompanyCategories

      @Transactional(propagation=SUPPORTS, readOnly=true) List<MBCategory> getCompanyCategories(long companyId, int start, int end)
    • getCompanyCategoriesCount

      @Transactional(propagation=SUPPORTS, readOnly=true) int getCompanyCategoriesCount(long companyId)
    • getExportActionableDynamicQuery

      @Transactional(propagation=SUPPORTS, readOnly=true) com.liferay.portal.kernel.dao.orm.ExportActionableDynamicQuery getExportActionableDynamicQuery(com.liferay.exportimport.kernel.lar.PortletDataContext portletDataContext)
    • getIndexableActionableDynamicQuery

      @Transactional(propagation=SUPPORTS, readOnly=true) com.liferay.portal.kernel.dao.orm.IndexableActionableDynamicQuery getIndexableActionableDynamicQuery()
    • getMBCategories

      @Transactional(propagation=SUPPORTS, readOnly=true) List<MBCategory> getMBCategories(int start, int end)
      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 com.liferay.portal.kernel.dao.orm.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, then the query will include the default ORDER BY logic from com.liferay.message.boards.model.impl.MBCategoryModelImpl.

      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
    • getMBCategoriesByUuidAndCompanyId

      @Transactional(propagation=SUPPORTS, readOnly=true) List<MBCategory> getMBCategoriesByUuidAndCompanyId(String uuid, long companyId)
      Returns all the message boards categories matching the UUID and company.
      Parameters:
      uuid - the UUID of the message boards categories
      companyId - the primary key of the company
      Returns:
      the matching message boards categories, or an empty list if no matches were found
    • getMBCategoriesByUuidAndCompanyId

      @Transactional(propagation=SUPPORTS, readOnly=true) List<MBCategory> getMBCategoriesByUuidAndCompanyId(String uuid, long companyId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<MBCategory> orderByComparator)
      Returns a range of message boards categories matching the UUID and company.
      Parameters:
      uuid - the UUID of the message boards categories
      companyId - the primary key of the company
      start - the lower bound of the range of message boards categories
      end - the upper bound of the range of message boards categories (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the range of matching message boards categories, or an empty list if no matches were found
    • getMBCategoriesCount

      @Transactional(propagation=SUPPORTS, readOnly=true) int getMBCategoriesCount()
      Returns the number of message boards categories.
      Returns:
      the number of message boards categories
    • getMBCategory

      @Transactional(propagation=SUPPORTS, readOnly=true) MBCategory getMBCategory(long categoryId) throws com.liferay.portal.kernel.exception.PortalException
      Returns the message boards category with the primary key.
      Parameters:
      categoryId - the primary key of the message boards category
      Returns:
      the message boards category
      Throws:
      com.liferay.portal.kernel.exception.PortalException - if a message boards category with the primary key could not be found
    • getMBCategory

      @Transactional(propagation=SUPPORTS, readOnly=true) MBCategory getMBCategory(long groupId, String friendlyURL) throws com.liferay.portal.kernel.exception.PortalException
      Throws:
      com.liferay.portal.kernel.exception.PortalException
    • getMBCategoryByExternalReferenceCode

      @Transactional(propagation=SUPPORTS, readOnly=true) MBCategory getMBCategoryByExternalReferenceCode(String externalReferenceCode, long groupId) throws com.liferay.portal.kernel.exception.PortalException
      Throws:
      com.liferay.portal.kernel.exception.PortalException
    • getMBCategoryByUuidAndGroupId

      @Transactional(propagation=SUPPORTS, readOnly=true) MBCategory getMBCategoryByUuidAndGroupId(String uuid, long groupId) throws com.liferay.portal.kernel.exception.PortalException
      Returns the message boards category matching the UUID and group.
      Parameters:
      uuid - the message boards category's UUID
      groupId - the primary key of the group
      Returns:
      the matching message boards category
      Throws:
      com.liferay.portal.kernel.exception.PortalException - if a matching message boards category could not be found
    • getOSGiServiceIdentifier

      String getOSGiServiceIdentifier()
      Returns the OSGi service identifier.
      Returns:
      the OSGi service identifier
    • getPersistedModel

      @Transactional(propagation=SUPPORTS, readOnly=true) com.liferay.portal.kernel.model.PersistedModel getPersistedModel(Serializable primaryKeyObj) throws com.liferay.portal.kernel.exception.PortalException
      Specified by:
      getPersistedModel in interface com.liferay.portal.kernel.service.PersistedModelLocalService
      Throws:
      com.liferay.portal.kernel.exception.PortalException
    • getSubcategoryIds

      @Transactional(propagation=SUPPORTS, readOnly=true) List<Long> getSubcategoryIds(List<Long> categoryIds, long groupId, long categoryId)
    • getSubscribedCategories

      @Transactional(propagation=SUPPORTS, readOnly=true) List<MBCategory> getSubscribedCategories(long groupId, long userId, int start, int end)
    • getSubscribedCategoriesCount

      @Transactional(propagation=SUPPORTS, readOnly=true) int getSubscribedCategoriesCount(long groupId, long userId)
    • moveCategoriesToTrash

      void moveCategoriesToTrash(long groupId, long userId) throws com.liferay.portal.kernel.exception.PortalException
      Throws:
      com.liferay.portal.kernel.exception.PortalException
    • moveCategory

      MBCategory moveCategory(long categoryId, long parentCategoryId, boolean mergeWithParentCategory) throws com.liferay.portal.kernel.exception.PortalException
      Throws:
      com.liferay.portal.kernel.exception.PortalException
    • moveCategoryFromTrash

      MBCategory moveCategoryFromTrash(long userId, long categoryId, long newCategoryId) throws com.liferay.portal.kernel.exception.PortalException
      Throws:
      com.liferay.portal.kernel.exception.PortalException
    • moveCategoryToTrash

      MBCategory moveCategoryToTrash(long userId, long categoryId) throws com.liferay.portal.kernel.exception.PortalException
      Throws:
      com.liferay.portal.kernel.exception.PortalException
    • restoreCategoryFromTrash

      void restoreCategoryFromTrash(long userId, long categoryId) throws com.liferay.portal.kernel.exception.PortalException
      Throws:
      com.liferay.portal.kernel.exception.PortalException
    • subscribeCategory

      void subscribeCategory(long userId, long groupId, long categoryId) throws com.liferay.portal.kernel.exception.PortalException
      Throws:
      com.liferay.portal.kernel.exception.PortalException
    • unsubscribeCategory

      void unsubscribeCategory(long userId, long groupId, long categoryId) throws com.liferay.portal.kernel.exception.PortalException
      Throws:
      com.liferay.portal.kernel.exception.PortalException
    • updateCategory

      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, com.liferay.portal.kernel.service.ServiceContext serviceContext) throws com.liferay.portal.kernel.exception.PortalException
      Throws:
      com.liferay.portal.kernel.exception.PortalException
    • updateMBCategory

      @Indexable(type=REINDEX) MBCategory updateMBCategory(MBCategory mbCategory)
      Updates the message boards category in the database or adds it if it does not yet exist. Also notifies the appropriate model listeners.

      Important: Inspect MBCategoryLocalServiceImpl for overloaded versions of the method. If provided, use these entry points to the API, as the implementation logic may require the additional parameters defined there.

      Parameters:
      mbCategory - the message boards category
      Returns:
      the message boards category that was updated
    • updateStatus

      MBCategory updateStatus(long userId, long categoryId, int status) throws com.liferay.portal.kernel.exception.PortalException
      Throws:
      com.liferay.portal.kernel.exception.PortalException
    • getCTPersistence

      @Transactional(enabled=false) com.liferay.portal.kernel.service.persistence.change.tracking.CTPersistence<MBCategory> getCTPersistence()
      Specified by:
      getCTPersistence in interface com.liferay.portal.kernel.service.change.tracking.CTService<MBCategory>
    • getModelClass

      @Transactional(enabled=false) Class<MBCategory> getModelClass()
      Specified by:
      getModelClass in interface com.liferay.portal.kernel.service.change.tracking.CTService<MBCategory>
    • updateWithUnsafeFunction

      @Transactional(rollbackFor=java.lang.Throwable.class) <R, E extends Throwable> R updateWithUnsafeFunction(com.liferay.petra.function.UnsafeFunction<com.liferay.portal.kernel.service.persistence.change.tracking.CTPersistence<MBCategory>,R,E> updateUnsafeFunction) throws E
      Specified by:
      updateWithUnsafeFunction in interface com.liferay.portal.kernel.service.change.tracking.CTService<MBCategory>
      Throws:
      E extends Throwable