Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

openfuture.bugbase.domain
Class Login  view Login download Login.java

java.lang.Object
  extended byopenfuture.bugbase.domain.DomainObject
      extended byopenfuture.bugbase.domain.Login
All Implemented Interfaces:
java.io.Serializable
Direct Known Subclasses:
User

public class Login
extends DomainObject

Login data object. Created: Sun Jun 25 08:41:38 2000

Version:
$Revision: 1.3 $

Field Summary
private  java.lang.String password
           
private  java.lang.String userid
           
 
Fields inherited from class openfuture.bugbase.domain.DomainObject
STATE_CLEAN, STATE_DELETED, STATE_DIRTY, STATE_NEW
 
Constructor Summary
Login()
          Empty constructor.
Login(java.lang.String userid)
          Creates a new login for a given user ID with empty password
Login(java.lang.String userid, java.lang.String password)
          Creates a new login for a given user ID and password.
 
Method Summary
 java.lang.String getPassword()
          Get the value of password.
 java.lang.String getUserid()
          Get the value of userid.
 void setPassword(java.lang.String v)
          Set the value of password.
 void setUserid(java.lang.String v)
          Set the value of userid.
 java.lang.String toString()
          String representation of the login data.
 
Methods inherited from class openfuture.bugbase.domain.DomainObject
getState, isDeleted, isDirty, isNew, setClean, setDirty, setModified, setState
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

userid

private java.lang.String userid

password

private java.lang.String password
Constructor Detail

Login

public Login()
Empty constructor.


Login

public Login(java.lang.String userid)
Creates a new login for a given user ID with empty password


Login

public Login(java.lang.String userid,
             java.lang.String password)
Creates a new login for a given user ID and password.

Method Detail

getUserid

public java.lang.String getUserid()
Get the value of userid.


setUserid

public void setUserid(java.lang.String v)
Set the value of userid.


getPassword

public java.lang.String getPassword()
Get the value of password.


setPassword

public void setPassword(java.lang.String v)
Set the value of password.


toString

public java.lang.String toString()
String representation of the login data.