Liferay 6.2.0

com.liferay.portlet.messageboards.service
Interface MBThreadService

All Superinterfaces:
BaseService
All Known Implementing Classes:
MBThreadServiceBaseImpl, MBThreadServiceImpl, MBThreadServiceWrapper

@ProviderType
@AccessControlled
@JSONWebService
@Transactional(isolation=PORTAL,
               rollbackFor={PortalException.class,SystemException.class})
public interface MBThreadService
extends BaseService

Provides the remote service interface for MBThread. Methods of this service are expected to have security checks based on the propagated JAAS credentials because this service can be accessed remotely.

See Also:
MBThreadServiceUtil, MBThreadServiceBaseImpl, MBThreadServiceImpl
ServiceBuilder generated this class. Modifications in this class will be overwritten the next time it is generated.

Method Summary
abstract  void deleteThread(long threadId)
           
abstract  String getBeanIdentifier()
          Returns the Spring bean ID for this bean.
abstract  List<MBThread> getGroupThreads(long groupId, long userId, Date modifiedDate, int status, int start, int end)
           
abstract  List<MBThread> getGroupThreads(long groupId, long userId, int status, boolean subscribed, boolean includeAnonymous, int start, int end)
           
abstract  List<MBThread> getGroupThreads(long groupId, long userId, int status, boolean subscribed, int start, int end)
           
abstract  List<MBThread> getGroupThreads(long groupId, long userId, int status, int start, int end)
           
abstract  int getGroupThreadsCount(long groupId, long userId, Date modifiedDate, int status)
           
abstract  int getGroupThreadsCount(long groupId, long userId, int status)
           
abstract  int getGroupThreadsCount(long groupId, long userId, int status, boolean subscribed)
           
abstract  int getGroupThreadsCount(long groupId, long userId, int status, boolean subscribed, boolean includeAnonymous)
           
abstract  List<MBThread> getThreads(long groupId, long categoryId, int status, int start, int end)
           
abstract  int getThreadsCount(long groupId, long categoryId, int status)
           
abstract  Lock lockThread(long threadId)
           
abstract  MBThread moveThread(long categoryId, long threadId)
           
abstract  MBThread moveThreadFromTrash(long categoryId, long threadId)
           
abstract  MBThread moveThreadToTrash(long threadId)
           
abstract  void restoreThreadFromTrash(long threadId)
           
abstract  Hits search(long groupId, long creatorUserId, int status, int start, int end)
           
abstract  Hits search(long groupId, long creatorUserId, long startDate, long endDate, int status, int start, int end)
           
abstract  void setBeanIdentifier(String beanIdentifier)
          Sets the Spring bean ID for this bean.
abstract  MBThread splitThread(long messageId, String subject, ServiceContext serviceContext)
           
abstract  void unlockThread(long threadId)
           
 

Method Detail

getBeanIdentifier

String getBeanIdentifier()
Returns the Spring bean ID for this bean.

Returns:
the Spring bean ID for this bean

setBeanIdentifier

void setBeanIdentifier(String beanIdentifier)
Sets the Spring bean ID for this bean.

Parameters:
beanIdentifier - the Spring bean ID for this bean

deleteThread

void deleteThread(long threadId)
                  throws PortalException,
                         SystemException
Throws:
PortalException
SystemException

getGroupThreads

@Transactional(propagation=SUPPORTS,
               readOnly=true)
List<MBThread> getGroupThreads(long groupId,
                                                                        long userId,
                                                                        Date modifiedDate,
                                                                        int status,
                                                                        int start,
                                                                        int end)
                               throws PortalException,
                                      SystemException
Throws:
PortalException
SystemException

getGroupThreads

@Transactional(propagation=SUPPORTS,
               readOnly=true)
List<MBThread> getGroupThreads(long groupId,
                                                                        long userId,
                                                                        int status,
                                                                        boolean subscribed,
                                                                        boolean includeAnonymous,
                                                                        int start,
                                                                        int end)
                               throws PortalException,
                                      SystemException
Throws:
PortalException
SystemException

getGroupThreads

@Transactional(propagation=SUPPORTS,
               readOnly=true)
List<MBThread> getGroupThreads(long groupId,
                                                                        long userId,
                                                                        int status,
                                                                        boolean subscribed,
                                                                        int start,
                                                                        int end)
                               throws PortalException,
                                      SystemException
Throws:
PortalException
SystemException

getGroupThreads

@Transactional(propagation=SUPPORTS,
               readOnly=true)
List<MBThread> getGroupThreads(long groupId,
                                                                        long userId,
                                                                        int status,
                                                                        int start,
                                                                        int end)
                               throws PortalException,
                                      SystemException
Throws:
PortalException
SystemException

getGroupThreadsCount

@Transactional(propagation=SUPPORTS,
               readOnly=true)
int getGroupThreadsCount(long groupId,
                                                                  long userId,
                                                                  Date modifiedDate,
                                                                  int status)
                         throws SystemException
Throws:
SystemException

getGroupThreadsCount

@Transactional(propagation=SUPPORTS,
               readOnly=true)
int getGroupThreadsCount(long groupId,
                                                                  long userId,
                                                                  int status)
                         throws SystemException
Throws:
SystemException

getGroupThreadsCount

@Transactional(propagation=SUPPORTS,
               readOnly=true)
int getGroupThreadsCount(long groupId,
                                                                  long userId,
                                                                  int status,
                                                                  boolean subscribed)
                         throws SystemException
Throws:
SystemException

getGroupThreadsCount

@Transactional(propagation=SUPPORTS,
               readOnly=true)
int getGroupThreadsCount(long groupId,
                                                                  long userId,
                                                                  int status,
                                                                  boolean subscribed,
                                                                  boolean includeAnonymous)
                         throws SystemException
Throws:
SystemException

getThreads

@Transactional(propagation=SUPPORTS,
               readOnly=true)
List<MBThread> getThreads(long groupId,
                                                                   long categoryId,
                                                                   int status,
                                                                   int start,
                                                                   int end)
                          throws SystemException
Throws:
SystemException

getThreadsCount

@Transactional(propagation=SUPPORTS,
               readOnly=true)
int getThreadsCount(long groupId,
                                                             long categoryId,
                                                             int status)
                    throws SystemException
Throws:
SystemException

lockThread

Lock lockThread(long threadId)
                throws PortalException,
                       SystemException
Throws:
PortalException
SystemException

moveThread

MBThread moveThread(long categoryId,
                    long threadId)
                    throws PortalException,
                           SystemException
Throws:
PortalException
SystemException

moveThreadFromTrash

MBThread moveThreadFromTrash(long categoryId,
                             long threadId)
                             throws PortalException,
                                    SystemException
Throws:
PortalException
SystemException

moveThreadToTrash

MBThread moveThreadToTrash(long threadId)
                           throws PortalException,
                                  SystemException
Throws:
PortalException
SystemException

restoreThreadFromTrash

void restoreThreadFromTrash(long threadId)
                            throws PortalException,
                                   SystemException
Throws:
PortalException
SystemException

search

@Transactional(propagation=SUPPORTS,
               readOnly=true)
Hits search(long groupId,
                                                     long creatorUserId,
                                                     int status,
                                                     int start,
                                                     int end)
            throws PortalException,
                   SystemException
Throws:
PortalException
SystemException

search

@Transactional(propagation=SUPPORTS,
               readOnly=true)
Hits search(long groupId,
                                                     long creatorUserId,
                                                     long startDate,
                                                     long endDate,
                                                     int status,
                                                     int start,
                                                     int end)
            throws PortalException,
                   SystemException
Throws:
PortalException
SystemException

splitThread

MBThread splitThread(long messageId,
                     String subject,
                     ServiceContext serviceContext)
                     throws PortalException,
                            SystemException
Throws:
PortalException
SystemException

unlockThread

void unlockThread(long threadId)
                  throws PortalException,
                         SystemException
Throws:
PortalException
SystemException

Liferay 6.2.0