List of usage examples for com.liferay.portal.kernel.service GroupLocalServiceUtil getOrganizationsRelatedGroups
public static java.util.List<com.liferay.portal.kernel.model.Group> getOrganizationsRelatedGroups( java.util.List<com.liferay.portal.kernel.model.Organization> organizations)
From source file:com.liferay.users.admin.web.internal.display.context.UserDisplayContext.java
License:Open Source License
private List<Group> _getOrganizationRelatedGroups() throws PortalException { List<Group> organizationsRelatedGroups = Collections.emptyList(); List<Organization> organizations = getOrganizations(); if (!organizations.isEmpty()) { organizationsRelatedGroups = GroupLocalServiceUtil.getOrganizationsRelatedGroups(organizations); }/*from ww w . ja va 2s .c om*/ return organizationsRelatedGroups; }