Uses of Class
org.mycore.user.MCRGroup

Packages that use MCRGroup
org.mycore.backend.hibernate   
org.mycore.user   
 

Uses of MCRGroup in org.mycore.backend.hibernate
 

Methods in org.mycore.backend.hibernate that return MCRGroup
 MCRGroup MCRHIBUserStore.retrieveGroup(String groupID)
          This method retrieves a MyCoRe group object from the persistent datastore.
 

Methods in org.mycore.backend.hibernate with parameters of type MCRGroup
 void MCRHIBUserStore.createGroup(MCRGroup newGroup)
          This method creates a MyCoRe group object in the persistent datastore.
 void MCRHIBUserStore.updateGroup(MCRGroup group)
          This method updates a MyCoRe group object in the persistent datastore.
 

Uses of MCRGroup in org.mycore.user
 

Methods in org.mycore.user that return MCRGroup
 MCRGroup MCRUserMgr.retrieveGroup(String groupID)
          This method retrieves the group object with the given group ID.
 MCRGroup MCRUserStore.retrieveGroup(String groupID)
          This method retrieves a MyCoRe group object from the persistent datastore.
protected  MCRGroup MCRUserMgr.retrieveGroup(String groupID, boolean bFromDataStore)
          This method first looks for a given groupID in the group cache and returns this group object.
 

Methods in org.mycore.user that return types with arguments of type MCRGroup
 Set<MCRGroup> MCRUserMgr.getGroupsContainingUser(MCRUser user, Set<MCRGroup> groups)
          This method determines in which groups of a given set of groups a given user is a member of.
 Set<MCRGroup> MCRUserMgr.retrieveGroups(Set<String> groupIDs)
          In the access control subsystem only IDs are stored, not references to user or group objects.
 

Methods in org.mycore.user with parameters of type MCRGroup
 void MCRUserMgr.createGroup(MCRGroup group)
          This method creates a group in the datastore (and the group cache as well).
 void MCRUserStore.createGroup(MCRGroup newGroup)
          This method creates a MyCoRe group object in the persistent datastore.
 void MCRUserMgr.initializeGroup(MCRGroup group, String creator)
          This method is used by the initialization process of the user/group system to create a starting configuration without checking the consistency of the data.
 boolean MCRUser.isMemberOf(MCRGroup group)
          This method checks if the user is member of a given group.
 void MCRUserMgr.updateGroup(MCRGroup updGroup)
          This method updates a group in the datastore (and the cache as well).
 void MCRUserStore.updateGroup(MCRGroup group)
          This method updates a MyCoRe group object in the persistent datastore.
 

Method parameters in org.mycore.user with type arguments of type MCRGroup
 Set<MCRGroup> MCRUserMgr.getGroupsContainingUser(MCRUser user, Set<MCRGroup> groups)
          This method determines in which groups of a given set of groups a given user is a member of.
 

Constructors in org.mycore.user with parameters of type MCRGroup
MCRGroup(MCRGroup other)