|
Wildfire 3.2.4 Javadoc | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.jivesoftware.wildfire.auth.AuthFactory
public class AuthFactory
Pluggable authentication service. Users of Wildfire that wish to change the AuthProvider
implementation used to authenticate users can set the AuthProvider.className
XML property. For example, if you have configured Wildfire to use LDAP for user information,
you'd want to send a custom implementation of AuthFactory to make LDAP auth queries.
After changing the AuthProvider.className
XML property, you must restart your
application server.
Constructor Summary | |
---|---|
AuthFactory()
|
Method Summary | |
---|---|
static AuthToken |
authenticate(String username,
String password)
Authenticates a user with a username and plain text password and returns and AuthToken. |
static AuthToken |
authenticate(String username,
String token,
String digest)
Authenticates a user with a username, token, and digest and returns an AuthToken. |
static String |
createDigest(String token,
String password)
Returns a digest given a token and password, according to JEP-0078. |
static String |
decryptPassword(String encryptedPassword)
Returns a decrypted version of the encrypted password. |
static String |
encryptPassword(String password)
Returns an encrypted version of the plain-text password. |
static AuthProvider |
getAuthProvider()
Returns the currently-installed AuthProvider. |
static String |
getPassword(String username)
Returns the user's password. |
static boolean |
isDigestSupported()
Returns true if the currently installed AuthProvider supports
digest authentication according to JEP-0078. |
static boolean |
isPlainSupported()
Returns true if the currently installed AuthProvider supports authentication
using plain-text passwords according to JEP-0078. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public AuthFactory()
Method Detail |
---|
public static AuthProvider getAuthProvider()
public static boolean isPlainSupported()
AuthProvider
supports authentication
using plain-text passwords according to JEP-0078. Plain-text authentication is
not secure and should generally only be used over a TLS/SSL connection.
public static boolean isDigestSupported()
AuthProvider
supports
digest authentication according to JEP-0078.
public static String getPassword(String username) throws UserNotFoundException, UnsupportedOperationException
username
- the username of the user.
UserNotFoundException
- if the given user could not be found.
UnsupportedOperationException
- if the provider does not
support the operation (this is an optional operation).public static AuthToken authenticate(String username, String password) throws UnauthorizedException
username
- the username.password
- the password.
UnauthorizedException
- if the username and password do not match any existing user.public static AuthToken authenticate(String username, String token, String digest) throws UnauthorizedException
createDigest(String, String)
method.
If the username and digest do not match the record of any user in the system, the
method throws an UnauthorizedException.
username
- the username.token
- the token that was used with plain-text password to generate the digest.digest
- the digest generated from plain-text password and unique token.
UnauthorizedException
- if the username and password do not match any
existing user.public static String createDigest(String token, String password)
token
- the token used in the digest.password
- the plain-text password to be digested.
public static String encryptPassword(String password)
password
- the plain-text password.
UnsupportedOperationException
- if encryption/decryption is not possible;
for example, during setup mode.public static String decryptPassword(String encryptedPassword)
encryptedPassword
- the encrypted password.
UnsupportedOperationException
- if encryption/decryption is not possible;
for example, during setup mode.
|
Wildfire 3.2.4 Javadoc | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |