com.liferay.portlet.messageboards.service
Interface MBThreadService

All Known Implementing Classes:
MBThreadServiceWrapper

@Transactional(isolation=PORTAL,
               rollbackFor={PortalException.class,SystemException.class})
public interface MBThreadService

View Source

ServiceBuilder generated this class. Modifications in this class will be overwritten the next time is generated.

This interface defines the service. The default implementation is com.liferay.portlet.messageboards.service.impl.MBThreadServiceImpl}. Modify methods in that class and rerun ServiceBuilder to populate this class and all other generated classes.

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.

Author:
Brian Wing Shun Chan
See Also:
MBThreadServiceUtil
Generated:

Method Summary
 void deleteThread(long threadId)
           
 java.util.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)
           
 

Method Detail

deleteThread

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

getThreads

@Transactional(propagation=SUPPORTS,
               readOnly=true)
java.util.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