Example usage for com.liferay.portal.kernel.model RoleConstants TYPES_ORGANIZATION_AND_REGULAR_AND_SITE

List of usage examples for com.liferay.portal.kernel.model RoleConstants TYPES_ORGANIZATION_AND_REGULAR_AND_SITE

Introduction

In this page you can find the example usage for com.liferay.portal.kernel.model RoleConstants TYPES_ORGANIZATION_AND_REGULAR_AND_SITE.

Prototype

null TYPES_ORGANIZATION_AND_REGULAR_AND_SITE

To view the source code for com.liferay.portal.kernel.model RoleConstants TYPES_ORGANIZATION_AND_REGULAR_AND_SITE.

Click Source Link

Usage

From source file:com.liferay.roles.item.selector.RoleItemSelectorCriterion.java

License:Open Source License

private void _validateType(int type) {
    if (!ArrayUtil.contains(RoleConstants.TYPES_ORGANIZATION_AND_REGULAR_AND_SITE, type)) {

        throw new IllegalArgumentException("Role type must have a value of 1, 2, or 3");
    }//  w ww .j ava 2s .c o  m
}