Public Member Functions | |
| Credential () | |
| Credential default constructor. | |
| Credential (const String &user, const String &password, CredentialPersistence) | |
| Credential constructor. | |
| const String & | user () const |
| get user | |
| const String & | password () const |
| get password | |
| bool | hasPassword () const |
| test if Credential has password | |
| CredentialPersistence | persistence () const |
| get persistence | |
| WKAL::Credential::Credential | ( | ) |
| WKAL::Credential::Credential | ( | const String & | user, | |
| const String & | password, | |||
| CredentialPersistence | ||||
| ) |
Credential constructor.
| [in] | : | user |
| [in] | : | password |
| [in] | : | credential persistence Credential *c = new Credential(u, p, cp); |
| const String& WKAL::Credential::user | ( | ) | const |
get user
| [out] | : | user String u = c->user(); |
| const String& WKAL::Credential::password | ( | ) | const |
get password
| [out] | : | password String p = c->password(); |
| bool WKAL::Credential::hasPassword | ( | ) | const |
test if Credential has password
| [out] | : | true if Credential has password bool p = c->hasPassword();
|
| CredentialPersistence WKAL::Credential::persistence | ( | ) | const |
get persistence
| [out] | : | credential persistence CredentialPersistence cp = c->persistence(); |