掲示板

What is 'status' in MBMessageLocalServiceUtil.getThreadMessagesCount()

12年前 に Ronnie Zerocool によって更新されました。

What is 'status' in MBMessageLocalServiceUtil.getThreadMessagesCount()

New Member 投稿: 4 参加年月日: 11/10/27 最新の投稿
In Liferay-Portal6.0.6 what does the status in MBMessageLocalServiceUtil.getThreadMessagesCount(long threadId, int status) stand for? What are the values that 'status' can assume?
thumbnail
12年前 に Shinn Lok によって更新されました。

RE: What is 'status' in MBMessageLocalServiceUtil.getThreadMessagesCount() (回答)

Junior Member 投稿: 89 参加年月日: 11/01/14 最新の投稿
The statuses throughout Liferay are defined by the values in WorkflowConstants. The values that it could assume are the following:

(STATUS_ANY = -1)

STATUS_APPROVED = 0
STATUS_PENDING = 1
STATUS_DRAFT = 2
STATUS_EXPIRED = 3
STATUS_DENIED = 4
STATUS_INACTIVE = 5
STATUS_INCOMPLETE = 6
12年前 に Ronnie Zerocool によって更新されました。

RE: What is 'status' in MBMessageLocalServiceUtil.getThreadMessagesCount()

New Member 投稿: 4 参加年月日: 11/10/27 最新の投稿
Thanks a lot Shinn Lok.