Package org.jdesktop.swingx.auth
Class JAASLoginService
- java.lang.Object
-
- org.jdesktop.beans.AbstractBean
-
- org.jdesktop.swingx.auth.LoginService
-
- org.jdesktop.swingx.auth.JAASLoginService
-
@JavaBean public class JAASLoginService extends LoginService
JAASLoginService implements a LoginService that uses JAAS for authentication. JAASLoginService uses the server name as name of the configuration for JAAS.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description (package private) class
JAASLoginService.JAASCallbackHandler
-
Field Summary
Fields Modifier and Type Field Description private static java.util.logging.Logger
LOG
protected javax.security.auth.login.LoginContext
loginContext
-
Constructor Summary
Constructors Constructor Description JAASLoginService()
Default JavaBeans constructorJAASLoginService(java.lang.String server)
Constructor for JAASLoginService
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
authenticate(java.lang.String name, char[] password, java.lang.String server)
This method is intended to be implemented by clients wishing to authenticate a user with a given password.javax.security.auth.login.LoginContext
getLoginContext()
Returns theLoginContext
used during the authentication process.javax.security.auth.Subject
getSubject()
Returns theSubject
representing the authenticated individual, ornull
if the user has not yet been successfully authenticated.-
Methods inherited from class org.jdesktop.swingx.auth.LoginService
addLoginListener, cancelAuthentication, fireLoginCanceled, fireLoginFailed, fireLoginStarted, fireLoginSucceeded, getServer, getSynchronous, getUserRoles, removeLoginListener, setServer, setSynchronous, startAuthentication
-
Methods inherited from class org.jdesktop.beans.AbstractBean
addPropertyChangeListener, addPropertyChangeListener, addVetoableChangeListener, addVetoableChangeListener, clone, fireIndexedPropertyChange, firePropertyChange, firePropertyChange, fireVetoableChange, fireVetoableChange, getPropertyChangeListeners, getPropertyChangeListeners, getVetoableChangeListeners, getVetoableChangeListeners, hasPropertyChangeListeners, hasVetoableChangeListeners, removePropertyChangeListener, removePropertyChangeListener, removeVetoableChangeListener, removeVetoableChangeListener
-
-
-
-
Method Detail
-
authenticate
public boolean authenticate(java.lang.String name, char[] password, java.lang.String server) throws java.lang.Exception
Description copied from class:LoginService
This method is intended to be implemented by clients wishing to authenticate a user with a given password. Clients should implement the authentication in a manner that the authentication can be cancelled at any time.- Specified by:
authenticate
in classLoginService
- Parameters:
name
- usernamepassword
- passwordserver
- server (optional)- Returns:
true
on authentication success- Throws:
java.lang.Exception
-
getLoginContext
public javax.security.auth.login.LoginContext getLoginContext()
Returns theLoginContext
used during the authentication process.
-
getSubject
public javax.security.auth.Subject getSubject()
Returns theSubject
representing the authenticated individual, ornull
if the user has not yet been successfully authenticated.
-
-