Uses of Class
com.ecyrd.jspwiki.auth.authorize.Group

Packages that use Group
com.ecyrd.jspwiki The chief package of JSPWiki. 
com.ecyrd.jspwiki.auth.authorize Authorizer implementation. 
 

Uses of Group in com.ecyrd.jspwiki
 

Methods in com.ecyrd.jspwiki with parameters of type Group
protected  boolean WikiSession.isInGroup(Group group)
          Returns true if one of this WikiSession's user Principals can be shown to belong to a particular wiki group.
 

Uses of Group in com.ecyrd.jspwiki.auth.authorize
 

Methods in com.ecyrd.jspwiki.auth.authorize that return Group
 Group GroupManager.getGroup(String name)
          Returns the Group matching a given name.
 Group[] GroupDatabase.groups()
          Returns all wiki groups that are stored in the GroupDatabase as an array of Group objects.
 Group[] JDBCGroupDatabase.groups()
          Returns all wiki groups that are stored in the GroupDatabase as an array of Group objects.
 Group[] XMLGroupDatabase.groups()
          Returns all wiki groups that are stored in the GroupDatabase as an array of Group objects.
 Group GroupManager.parseGroup(String name, String memberLine, boolean create)
           Extracts group name and members from passed parameters and populates an existing Group with them.
 Group GroupManager.parseGroup(WikiContext context, boolean create)
           Extracts group name and members from the HTTP request and populates an existing Group with them.
 

Methods in com.ecyrd.jspwiki.auth.authorize with parameters of type Group
 void GroupDatabase.delete(Group group)
          Looks up and deletes a Group from the group database.
 void JDBCGroupDatabase.delete(Group group)
          Looks up and deletes a Group from the group database.
 void XMLGroupDatabase.delete(Group group)
          Looks up and deletes a Group from the group database.
 void GroupDatabase.save(Group group, Principal modifier)
          Saves a Group to the group database.
 void JDBCGroupDatabase.save(Group group, Principal modifier)
          Saves a Group to the group database.
 void XMLGroupDatabase.save(Group group, Principal modifier)
          Saves a Group to the group database.
 void GroupManager.setGroup(WikiSession session, Group group)
           Saves the Group created by a user in a wiki session.
 void GroupManager.validateGroup(WikiContext context, Group group)
          Validates a Group, and appends any errors to the session errors list.