| com.liferay.portal.service.GroupService
All known Subclasses: com.liferay.portal.service.base.GroupServiceBaseImpl,
GroupService | public interface GroupService (Code) | | View Source
ServiceBuilder generated this class. Modifications in this class will be
overwritten the next time is generated.
This interface defines the service. The default implementation is
com.liferay.portal.service.impl.GroupServiceImpl .
Modify methods in that class and rerun ServiceBuilder to populate this class
and all other generated classes.
This is a remote service. Methods of this service are expected to have security checks based on the propagated JAAS credentials because this service can be accessed remotely.
author: Brian Wing Shun Chan See Also: com.liferay.portal.service.GroupServiceFactory See Also: com.liferay.portal.service.GroupServiceUtil |
Method Summary | |
public com.liferay.portal.model.Group | addGroup(java.lang.String name, java.lang.String description, int type, java.lang.String friendlyURL, boolean active) | public com.liferay.portal.model.Group | addGroup(long liveGroupId, java.lang.String name, java.lang.String description, int type, java.lang.String friendlyURL, boolean active) | public void | addRoleGroups(long roleId, long[] groupIds) | public void | deleteGroup(long groupId) | public com.liferay.portal.model.Group | getGroup(long groupId) | public com.liferay.portal.model.Group | getGroup(long companyId, java.lang.String name) | public java.util.List | getOrganizationsGroups(java.util.List organizations) | public java.util.List | getUserGroupsGroups(java.util.List userGroups) | public boolean | hasUserGroup(long userId, long groupId) | public java.util.List | search(long companyId, java.lang.String name, java.lang.String description, java.lang.String[] params, int begin, int end) | public int | searchCount(long companyId, java.lang.String name, java.lang.String description, java.lang.String[] params) | public void | setRoleGroups(long roleId, long[] groupIds) | public void | unsetRoleGroups(long roleId, long[] groupIds) | public com.liferay.portal.model.Group | updateGroup(long groupId, java.lang.String name, java.lang.String description, int type, java.lang.String friendlyURL, boolean active) | public com.liferay.portal.model.Group | updateGroup(long groupId, java.lang.String typeSettings) |
|
|