Index

DKUserDataFed

Purpose:

The DKUserDataFed class represents user data.

Class summary:

class DKUserDataFed 
{
public:
 
    DKUserDataFed ();
    DKUserDataFed (const char* name);
 
    DKString getUserName () const;
    void setUserName (const char* name);
    DKString getNewUserName () const;
    void setNewUserName (const char* newName);
    DKString getUserPWD () const;
    void setUserPWD (const char* userPwd);
    int getAuthority () const;
    void setAuthority (int auth);
    DKString getLotusID () const;
    void setLotusID (const char* name);
    int getUserID () const;
    void setUserID (int id);
    void convertSQL();
};

Members:

Constructors
The first constructor is the default constructor. The second constructor constructs a DKUserDataFed object initialized to the specified name.
	DKUserDataFed ();
	DKUserDataFed (const char* name);
 

Member functions

getUserName
Gets the user name.
DKString getUserName () const;

setUserName
Sets the user name.
void setUserName (const char* name);

getNewUserName
Gets the new user name.
DKString getNewUserName () const;

setNewUserName
Sets the new user name.
void setNewUserName (const char* newName);

getUserPWD
Gets the user password.
DKString getUserPWD () const;

setUserPWD
Sets the user password.
void setUserPWD (const char* userPwd);

getAuthority
Gets user authority level.
int getAuthority () const;

setAuthority
Sets user authority level.
void setAuthority (int auth);

getLotusID
Gets the Lotus Node identifier.
DKString getLotusID () const;

setLotusID
Sets the Lotus Node identifier.
void setLotusID (const char* name);

getUserID
Gets the user identifier (ID).
int getUserID () const;

setUserID
Sets the user identifier (ID).
void setUserID (int id);

convertSQL
Checks and converts the string data members to be a SQL string.
void convertSQL();

(c) Copyright International Business Machines Corporation 1996, 2003. IBM Corp. All rights reserved.