Example usage for com.liferay.portal.kernel.security.permission ActionKeys DELETE_DISCUSSION

List of usage examples for com.liferay.portal.kernel.security.permission ActionKeys DELETE_DISCUSSION

Introduction

In this page you can find the example usage for com.liferay.portal.kernel.security.permission ActionKeys DELETE_DISCUSSION.

Prototype

String DELETE_DISCUSSION

To view the source code for com.liferay.portal.kernel.security.permission ActionKeys DELETE_DISCUSSION.

Click Source Link

Usage

From source file:com.liferay.message.boards.internal.service.MBDiscussionMBMessageServiceWrapper.java

License:Open Source License

@Override
public void deleteDiscussionMessage(long messageId) throws PortalException {
    MBDiscussionPermission.check(_getPermissionChecker(), messageId, ActionKeys.DELETE_DISCUSSION);

    super.deleteDiscussionMessage(messageId);
}