Package net.bluemind.group.api
Interface IGroupMember
- All Known Subinterfaces:
IExternalUser
,IGroup
,IUser
public interface IGroupMember
-
Method Summary
-
Method Details
-
memberOf
@GET @Path("{uid}/groups") List<ItemValue<Group>> memberOf(@PathParam("uid") String uid) throws ServerFault Retrieves a list of allGroup
s this uid is member of.- Parameters:
uid
- the member's unique id- Returns:
- a list of groups
- Throws:
ServerFault
- standard error object (unchecked exception)
-
memberOfGroups
@GET @Path("{uid}/groupUids") List<String> memberOfGroups(@PathParam("uid") String uid) throws ServerFault Retrieves a list of allGroup
uids this uid is member of.- Parameters:
uid
- the member's unique id- Returns:
- a list of
Group
uids - Throws:
ServerFault
- standard error object (unchecked exception)
-