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

Packages that use Role
com.ecyrd.jspwiki.auth.authorize Authorizer implementation. 
 

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

Fields in com.ecyrd.jspwiki.auth.authorize declared as Role
static Role Role.ALL
          All users, regardless of authentication status
static Role Role.ANONYMOUS
          If the user hasn't supplied a name
static Role Role.ASSERTED
          If the user has supplied a cookie with a username
static Role Role.AUTHENTICATED
          If the user has authenticated with the Container or UserDatabase
protected  Role[] WebContainerAuthorizer.m_containerRoles
          A lazily-initialized array of Roles that the container knows about.
 

Methods in com.ecyrd.jspwiki.auth.authorize that return Role
protected  Role[] WebContainerAuthorizer.getRoles(Document webxml)
          Protected method that extracts the roles from JSPWiki's web application deployment descriptor.
 

Methods in com.ecyrd.jspwiki.auth.authorize with parameters of type Role
static boolean Role.isBuiltInRole(Role role)
          Returns true if a supplied Role is a built-in Role: ALL, ANONYMOUS, ASSERTED, or AUTHENTICATED.
 boolean WebContainerAuthorizer.isConstrained(String url, Role role)
           Protected method that identifies whether a particular webapp URL is constrained to a particular Role.