Main Page | Packages | Class Hierarchy | Alphabetical List | Class List | File List | Class Members | Related Pages

org.objectweb.cjdbc.console.wizard.objects.User Class Reference

List of all members.

Public Member Functions

String getPassword ()
void setPassword (String password)
String getUsername ()
void setUsername (String username)
String toString ()

Package Attributes

String password
String username = WizardTranslate.get("label.user.undefined")

Detailed Description

User class is used to store user name and password and access them from different fields and forms in the wizard

Author:
Nicolas Modrzyk
Version:
1.0

Definition at line 38 of file User.java.


Member Function Documentation

String org.objectweb.cjdbc.console.wizard.objects.User.getPassword  ) 
 

Returns the password value.

Returns:
Returns the password.

Definition at line 48 of file User.java.

Referenced by org.objectweb.cjdbc.console.wizard.WizardTabs.exportDocumentToXml().

00049   {
00050     return password;
00051   }

String org.objectweb.cjdbc.console.wizard.objects.User.getUsername  ) 
 

Returns the username value.

Returns:
Returns the username.

Definition at line 68 of file User.java.

Referenced by org.objectweb.cjdbc.console.wizard.WizardTabs.exportDocumentToXml().

00069   {
00070     return username;
00071   }

void org.objectweb.cjdbc.console.wizard.objects.User.setPassword String  password  ) 
 

Sets the password value.

Parameters:
password The password to set.

Definition at line 58 of file User.java.

Referenced by org.objectweb.cjdbc.console.wizard.WizardTabs.importDocumentFromXml().

00059   {
00060     this.password = password;
00061   }

void org.objectweb.cjdbc.console.wizard.objects.User.setUsername String  username  ) 
 

Sets the username value.

Parameters:
username The username to set.

Definition at line 78 of file User.java.

Referenced by org.objectweb.cjdbc.console.wizard.WizardTabs.importDocumentFromXml().

00079   {
00080     this.username = username;
00081   }

String org.objectweb.cjdbc.console.wizard.objects.User.toString  ) 
 

See also:
java.lang.Object#toString()

Definition at line 86 of file User.java.

00087   {
00088     return username;
00089   }


The documentation for this class was generated from the following file:
Generated on Mon Apr 11 22:03:20 2005 for C-JDBC by  doxygen 1.3.9.1