Uses of Interface
com.ecyrd.jspwiki.auth.Authorizer

Packages that use Authorizer
com.ecyrd.jspwiki.auth   
com.ecyrd.jspwiki.auth.authorize   
com.ecyrd.jspwiki.auth.login   
 

Uses of Authorizer in com.ecyrd.jspwiki.auth
 

Classes in com.ecyrd.jspwiki.auth that implement Authorizer
 class UserManager.DummyGroupManager
          Implements a simple GroupManager which does not simply manage any groups.
 

Methods in com.ecyrd.jspwiki.auth that return Authorizer
protected  Authorizer AuthorizationManager.getAuthorizer()
          Returns the current external Authorizer in use, which may be null.
 

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

Subinterfaces of Authorizer in com.ecyrd.jspwiki.auth.authorize
 interface GroupManager
          Specifies how to add, remove, and persist groups to an external group management entity.
 

Classes in com.ecyrd.jspwiki.auth.authorize that implement Authorizer
 class DefaultGroupManager
           This default UserDatabase implementation provides groups to JSPWiki.
 class WebContainerAuthorizer
          Authorizes users by delegating role membership checks to the servlet container.
 

Uses of Authorizer in com.ecyrd.jspwiki.auth.login
 

Methods in com.ecyrd.jspwiki.auth.login that return Authorizer
 Authorizer AuthorizerCallback.getAuthorizer()
          Returns the authorizer.
 

Methods in com.ecyrd.jspwiki.auth.login with parameters of type Authorizer
 void AuthorizerCallback.setAuthorizer(Authorizer authorizer)
          Sets the authorizer object.
 

Constructors in com.ecyrd.jspwiki.auth.login with parameters of type Authorizer
WebContainerCallbackHandler(javax.servlet.http.HttpServletRequest request, UserDatabase database, Authorizer authorizer)