org.kuali.rice.kim.service
Interface GroupUpdateService

All Known Implementing Classes:
GroupUpdateServiceImpl

public interface GroupUpdateService

This service provides operations for creating and updating groups.

Author:
Kuali Rice Team (rice.collab@kuali.org)

Method Summary
 boolean addGroupToGroup(String childId, String parentId)
          Adds the group with the id supplied in childId as a member of the group with the id supplied in parentId.
 boolean addPrincipalToGroup(String principalId, String groupId)
          Add the principal with the given principalId as a member of the group with the given groupId.
 GroupInfo createGroup(GroupInfo groupInfo)
          Creates a new group using the given GroupInfo.
 void removeAllGroupMembers(String groupId)
          Removes all members from the group with the given groupId.
 boolean removeGroupFromGroup(String childId, String parentId)
          Removes the group with the id supplied in childId from the group with the id supplied in parentId.
 boolean removePrincipalFromGroup(String principalId, String groupId)
          Removes the member principal with the given principalId from the group with the given groupId.
 GroupInfo updateGroup(String groupId, GroupInfo groupInfo)
          Updates the group with the given groupId using the supplied GroupInfo.
 

Method Detail

createGroup

GroupInfo createGroup(GroupInfo groupInfo)
                      throws UnsupportedOperationException
Creates a new group using the given GroupInfo.

Throws:
UnsupportedOperationException

updateGroup

GroupInfo updateGroup(String groupId,
                      GroupInfo groupInfo)
                      throws UnsupportedOperationException
Updates the group with the given groupId using the supplied GroupInfo.

Throws:
UnsupportedOperationException

addGroupToGroup

boolean addGroupToGroup(String childId,
                        String parentId)
                        throws UnsupportedOperationException
Adds the group with the id supplied in childId as a member of the group with the id supplied in parentId.

Throws:
UnsupportedOperationException

removeGroupFromGroup

boolean removeGroupFromGroup(String childId,
                             String parentId)
                             throws UnsupportedOperationException
Removes the group with the id supplied in childId from the group with the id supplied in parentId.

Throws:
UnsupportedOperationException

addPrincipalToGroup

boolean addPrincipalToGroup(String principalId,
                            String groupId)
                            throws UnsupportedOperationException
Add the principal with the given principalId as a member of the group with the given groupId.

Throws:
UnsupportedOperationException

removePrincipalFromGroup

boolean removePrincipalFromGroup(String principalId,
                                 String groupId)
                                 throws UnsupportedOperationException
Removes the member principal with the given principalId from the group with the given groupId.

Throws:
UnsupportedOperationException

removeAllGroupMembers

void removeAllGroupMembers(String groupId)
                           throws UnsupportedOperationException
Removes all members from the group with the given groupId.

Throws:
UnsupportedOperationException


Copyright © 2004-2012 The Kuali Foundation. All Rights Reserved.