com.ecyrd.jspwiki.auth.login
Class WikiCallbackHandler
java.lang.Object
com.ecyrd.jspwiki.auth.login.WikiCallbackHandler
- All Implemented Interfaces:
- CallbackHandler
public class WikiCallbackHandler
- extends Object
- implements CallbackHandler
Handles logins made from inside the wiki application, rather than via the web
container. This handler is instantiated in
AuthenticationManager.login(WikiSession,HttpServletRequest, String, String)
.
If container-managed authentication is used, the
WebContainerCallbackHandler
is used instead. This callback handler is
designed to be used with UserDatabaseLoginModule
.
- Since:
- 2.3
- Author:
- Andrew Jaquith
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
WikiCallbackHandler
public WikiCallbackHandler(WikiEngine engine,
HttpServletRequest request,
String username,
String password)
- Create a new callback handler.
- Parameters:
engine
- the WikiEnginerequest
- the user's HTTP request. If passed as null
,
later requests for HttpRequestCallback
will return an UnsupportedCallbackExceptionusername
- the usernamepassword
- the password
handle
public void handle(Callback[] callbacks)
throws IOException,
UnsupportedCallbackException
- Specified by:
handle
in interface CallbackHandler
- Throws:
IOException
UnsupportedCallbackException
- See Also:
{@inheritDoc}