Uses of Interface
org.mortbay.jetty.security.UserRealm

Packages that use UserRealm
org.mortbay.jetty   
org.mortbay.jetty.security   
 

Uses of UserRealm in org.mortbay.jetty
 

Methods in org.mortbay.jetty that return UserRealm
 UserRealm Request.getUserRealm()
           
 UserRealm[] Server.getUserRealms()
           
 

Methods in org.mortbay.jetty with parameters of type UserRealm
 void Server.addUserRealm(UserRealm realm)
           
 void Server.removeUserRealm(UserRealm realm)
           
 void Request.setUserRealm(UserRealm userRealm)
           
 void Server.setUserRealms(UserRealm[] realms)
           
 

Uses of UserRealm in org.mortbay.jetty.security
 

Classes in org.mortbay.jetty.security that implement UserRealm
 class HashUserRealm
          HashMapped User Realm.
 class JDBCUserRealm
          HashMapped User Realm with JDBC as data source.
 

Methods in org.mortbay.jetty.security that return UserRealm
 UserRealm SecurityHandler.getUserRealm()
           
 

Methods in org.mortbay.jetty.security with parameters of type UserRealm
 Principal Authenticator.authenticate(UserRealm realm, String pathInContext, Request request, Response response)
          Authenticate.
 Principal BasicAuthenticator.authenticate(UserRealm realm, String pathInContext, Request request, Response response)
           
 Principal ClientCertAuthenticator.authenticate(UserRealm realm, String pathInContext, Request request, Response response)
           
 Principal DigestAuthenticator.authenticate(UserRealm realm, String pathInContext, Request request, Response response)
           
 Principal FormAuthenticator.authenticate(UserRealm realm, String pathInContext, Request request, Response response)
          Perform form authentication.
 void DigestAuthenticator.sendChallenge(UserRealm realm, Request request, Response response, boolean stale)
           
 void BasicAuthenticator.sendChallenge(UserRealm realm, Response response)
           
 void SecurityHandler.setUserRealm(UserRealm userRealm)