com.liferay.portlet.messageboards.service
Interface MBThreadService
- All Known Implementing Classes:
- MBThreadServiceBaseImpl, MBThreadServiceImpl, MBThreadServiceWrapper
@Transactional(isolation=PORTAL,
rollbackFor={PortalException.class,SystemException.class})
public interface MBThreadService
The interface for the message boards thread remote service.
Never modify or reference this interface directly. Always use MBThreadServiceUtil
to access the message boards thread remote service. Add custom service methods to MBThreadServiceImpl
and rerun ServiceBuilder to automatically copy the method declarations to this interface.
This is a remote service. 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 is generated.
Method Summary |
void |
deleteThread(long threadId)
|
List<MBThread> |
getGroupThreads(long groupId,
long userId,
int status,
boolean subscribed,
boolean includeAnonymous,
int start,
int end)
|
List<MBThread> |
getGroupThreads(long groupId,
long userId,
int status,
boolean subscribed,
int start,
int end)
|
List<MBThread> |
getGroupThreads(long groupId,
long userId,
int status,
int start,
int end)
|
int |
getGroupThreadsCount(long groupId,
long userId,
int status)
|
int |
getGroupThreadsCount(long groupId,
long userId,
int status,
boolean subscribed)
|
int |
getGroupThreadsCount(long groupId,
long userId,
int status,
boolean subscribed,
boolean includeAnonymous)
|
List<MBThread> |
getThreads(long groupId,
long categoryId,
int status,
int start,
int end)
|
int |
getThreadsCount(long groupId,
long categoryId,
int status)
|
Lock |
lockThread(long threadId)
|
MBThread |
moveThread(long categoryId,
long threadId)
|
MBThread |
splitThread(long messageId,
ServiceContext serviceContext)
|
void |
unlockThread(long threadId)
|
deleteThread
void deleteThread(long threadId)
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,
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
splitThread
MBThread splitThread(long messageId,
ServiceContext serviceContext)
throws PortalException,
SystemException
- Throws:
PortalException
SystemException
unlockThread
void unlockThread(long threadId)
throws PortalException,
SystemException
- Throws:
PortalException
SystemException