EAF 7.6 Implementation

com.lutris.http
Class BasicAuthResult

java.lang.Object
  extended by com.lutris.http.BasicAuthResult

public class BasicAuthResult
extends java.lang.Object

This class is used by BasicAuth to return both the username and the password at once.

Version:
$Revision: 1.1 $
Author:
Andy John

Field Summary
 java.lang.String password
          The password that was sent along with the request.
 java.lang.String username
          The username that was sent along with the request.
 
Constructor Summary
protected BasicAuthResult(java.lang.String username, java.lang.String password)
          Only the BasicAuth class should create instances of this class.
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

username

public java.lang.String username
The username that was sent along with the request.


password

public java.lang.String password
The password that was sent along with the request.

Constructor Detail

BasicAuthResult

protected BasicAuthResult(java.lang.String username,
                          java.lang.String password)
Only the BasicAuth class should create instances of this class.


EAF 7.6 Implementation