org.mortbay.jetty.security |
|
Java Source File Name | Type | Comment |
Authenticator.java | Interface | Authenticator Interface. |
B64Code.java | Class | Fast B64 Encoder/Decoder as described in RFC 1421.
Does not insert or interpret whitespace as described in RFC
1521. |
BasicAuthenticator.java | Class | BASIC authentication. |
ClientCertAuthenticator.java | Class | Client Certificate Authenticator. |
Constraint.java | Class | Describe an auth and/or data constraint. |
ConstraintMapping.java | Class | |
Credential.java | Class | Credentials.
The Credential class represents an abstract mechanism for checking
authentication credentials. |
DigestAuthenticator.java | Class | DIGEST authentication. |
FormAuthenticator.java | Class | FORM Authentication Authenticator. |
HashSSORealm.java | Class | |
HashUserRealm.java | Class | HashMapped User Realm.
An implementation of UserRealm that stores users and roles in-memory in
HashMaps.
Typically these maps are populated by calling the load() method or passing
a properties resource to the constructor. |
HTAccessHandler.java | Class | Handler to authenticate access using the Apache's .htaccess files. |
JDBCUserRealm.java | Class | HashMapped User Realm with JDBC as data source.
JDBCUserRealm extends HashUserRealm and adds a method to fetch user
information from database.
The authenticate() method checks the inherited HashMap for the user.
If the user is not found, it will fetch details from the database
and populate the inherited HashMap. |
Password.java | Class | Password utility class.
This utility class gets a password or pass phrase either by:
+ Password is set as a system property.
+ The password is prompted for and read from standard input
+ A program is run to get the password.
Passwords that begin with OBF: are de obfuscated.
Passwords can be obfuscated by run org.mortbay.util.Password as a
main class. |
PKCS12Import.java | Class | This class can be used to import a key/certificate pair from a pkcs12 file
into a regular JKS format keystore for use with jetty and other java based
SSL applications, etc. |
SecurityHandler.java | Class | Handler to enforce SecurityConstraints. |
ServletSSL.java | Class | Jetty Servlet SSL support utilities. |
SslSocketConnector.java | Class | JSSE Socket Listener. |
SSORealm.java | Interface | Single Sign On Realm.
This interface is a mix-in interface for the UserRealm interface. |
UnixCrypt.java | Class | Unix Crypt. |
UserRealm.java | Interface | User Realm. |