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

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

Introduction

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

Prototype

public String[] getSystemOrganizationRoles();

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());
}