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

org.objectweb.cjdbc.common.users.AdminUser Class Reference

Inheritance diagram for org.objectweb.cjdbc.common.users.AdminUser:

Inheritance graph
[legend]
Collaboration diagram for org.objectweb.cjdbc.common.users.AdminUser:

Collaboration graph
[legend]
List of all members.

Public Member Functions

 AdminUser (String login, String password)
String getXml ()

Detailed Description

This class defines a AdminUser

Author:
Nicolas Modrzyk
Version:
1.0

Definition at line 35 of file AdminUser.java.


Constructor & Destructor Documentation

org.objectweb.cjdbc.common.users.AdminUser.AdminUser String  login,
String  password
 

Creates a new AdminUser instance. The caller must ensure that the parameters are not null.

Parameters:
login the user name.
password the password.

Definition at line 44 of file AdminUser.java.

00045   {
00046     super(login, password);
00047   }


Member Function Documentation

String org.objectweb.cjdbc.common.users.AdminUser.getXml  )  [virtual]
 

See also:
org.objectweb.cjdbc.common.users.AbstractDatabaseUser.getXml()

Implements org.objectweb.cjdbc.common.users.AbstractDatabaseUser.

Definition at line 52 of file AdminUser.java.

Referenced by org.objectweb.cjdbc.controller.authentication.AuthenticationManager.getXml().

00053   {
00054     return "<" + DatabasesXmlTags.ELT_User + " "
00055         + DatabasesXmlTags.ATT_username + "=\"" + this.getName() + "\" "
00056         + DatabasesXmlTags.ATT_password + "=\"" + this.getPassword() + "\" />";
00057   }


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