All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class com.sun.jaw.impl.adaptor.security.AuthInfo

java.lang.Object
   |
   +----com.sun.jaw.impl.adaptor.security.AuthInfo

public class AuthInfo
extends Object
implements Cloneable, Serializable
This class defines the Authentication Information required by the adaptors for carrying out login/password authentication.


Constructor Index

 o AuthInfo()
 o AuthInfo(String, String)

Method Index

 o clone()
Creates a new object of the same class as this object.
 o getLogin()
Returns the value of the login property.
 o getPassword()
Returns the value of the password property.
 o setLogin(String)
Sets the value of the login property.
 o setPassword(String)
Sets the value of the password property.

Constructors

 o AuthInfo
 public AuthInfo()
 o AuthInfo
 public AuthInfo(String login,
                 String password)

Methods

 o getLogin
 public String getLogin()
Returns the value of the login property.

Returns:
the value of the login property.
 o setLogin
 public void setLogin(String login)
Sets the value of the login property.

Parameters:
login - The value the login property will be set to.
 o getPassword
 public String getPassword()
Returns the value of the password property.

Returns:
the value of the password property.
 o setPassword
 public void setPassword(String password)
Sets the value of the password property.

Parameters:
password - The value the password property will be set to.
 o clone
 public Object clone()
Creates a new object of the same class as this object. It then initializes each of the new object's fields by assigning it the same value as the corresponding field in this object. No constructor is called.

Overrides:
clone in class Object

All Packages  Class Hierarchy  This Package  Previous  Next  Index