|
Openfire 3.4.1 Javadoc | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface AuthProvider
Provider interface for authentication. Users that wish to integrate with their own authentication system must implement this class and then register the implementation with Openfire in the openfire.xml file. An entry in that file would look like the following:
<provider> <auth> <className>com.foo.auth.CustomAuthProvider</className> </auth> </provider>
Method Summary | |
---|---|
void |
authenticate(String username,
String password)
Returns if the username and password are valid; otherwise this method throws an UnauthorizedException. |
void |
authenticate(String username,
String token,
String digest)
Returns if the username, token, and digest are valid; otherwise this method throws an UnauthorizedException. |
String |
getPassword(String username)
Returns the user's password. |
boolean |
isDigestSupported()
Returns true if this AuthProvider supports digest authentication according to JEP-0078. |
boolean |
isPlainSupported()
Returns true if this AuthProvider supports authentication using plain-text passwords according to JEP--0078. |
void |
setPassword(String username,
String password)
Sets the users's password. |
boolean |
supportsPasswordRetrieval()
Returns true if this UserProvider is able to retrieve user passwords from the backend user store. |
Method Detail |
---|
boolean isPlainSupported()
boolean isDigestSupported()
void authenticate(String username, String password) throws UnauthorizedException
If isPlainSupported()
returns false, this method should
throw an UnsupportedOperationException.
username
- the username or full JID.password
- the passwordl
UnauthorizedException
- if the username and password do
not match any existing user.void authenticate(String username, String token, String digest) throws UnauthorizedException
If isDigestSupported()
returns false, this method should
throw an UnsupportedOperationException.
username
- the username or full JID.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.String getPassword(String username) throws UserNotFoundException, UnsupportedOperationException
username
- the username of the user.
UserNotFoundException
- if the given user's password could not be loaded.
UnsupportedOperationException
- if the provider does not
support the operation (this is an optional operation).void setPassword(String username, String password) throws UserNotFoundException, UnsupportedOperationException
username
- the username of the user.password
- the new plaintext password for the user.
UserNotFoundException
- if the given user could not be loaded.
UnsupportedOperationException
- if the provider does not
support the operation (this is an optional operation).boolean supportsPasswordRetrieval()
getPassword(String)
will throw an UnsupportedOperationException
if invoked.
|
Openfire 3.4.1 Javadoc | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |