Package org.eclipse.jetty.jaas.callback
Class RequestParameterCallback
- java.lang.Object
-
- org.eclipse.jetty.jaas.callback.RequestParameterCallback
-
- All Implemented Interfaces:
javax.security.auth.callback.Callback
public class RequestParameterCallback extends java.lang.Object implements javax.security.auth.callback.Callback
RequestParameterCallbackAllows a JAAS callback handler to access any parameter from the j_security_check FORM. This means that a LoginModule can access form fields other than the j_username and j_password fields, and use it, for example, to authenticate a user.
-
-
Constructor Summary
Constructors Constructor Description RequestParameterCallback()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getParameterName()
java.util.List<?>
getParameterValues()
void
setParameterName(java.lang.String name)
void
setParameterValues(java.util.List<?> values)
-