Example usage for com.liferay.portal.kernel.util Portal getSystemRoles

List of usage examples for com.liferay.portal.kernel.util Portal getSystemRoles

Introduction

In this page you can find the example usage for com.liferay.portal.kernel.util Portal getSystemRoles.

Prototype

public String[] getSystemRoles();

Source Link

Usage

From source file:com.liferay.roles.admin.internal.exportimport.data.handler.RolesAdminPortletDataHandler.java

License:Open Source License

@Reference(unbind = "-")
protected void setPortal(Portal portal) {
    Collections.addAll(_allSystemRoleNames, portal.getSystemOrganizationRoles());
    Collections.addAll(_allSystemRoleNames, portal.getSystemRoles());
    Collections.addAll(_allSystemRoleNames, portal.getSystemSiteRoles());
}