Name
and a String Password
. Two abstract functions validateName
and validatePassword
provide for concrete implementations to perform character validation. All the work is then done in the configure
abstract function. In the BasicAuthentication
class, for example, the configuring is done by adding the request property "Authorization" with a value "Basic <base64encode of 'userid:password'>".
@author Vincent Massol
@author Jason Robertson
@author Christopher Lenz
@since 1.3
@version $Id: AbstractAuthentication.java,v 1.10 2003/06/15 16:28:00 cmlenz Exp $
|
|
|
|
|
|
|
|