exception AuthenticationRequest in module com::sun::star::ucb::

(Global Index)

Syntax

exception AuthenticationRequest : com::sun::star::task::ClassifiedInteractionRequest ;

Description

An error specifing lack of correct authentication data (e.g., to log into an account).

Field Summary

ServerName The name of the server (if applicable).

Diagnostic Any diagnostic message about the failure to log in (if applicable; it will typically be an english phrase or sentence).

HasRealm Specifies if the authentication involves a 'realm' (as can be the case for HTTP).

Realm Any already specified realm. If HasRealm is false, this member should be ignored.

HasUserName Specifies if the authentication involves a 'user name' (as is almost always the case).

UserName Any already specified user name. If HasUserName is false, this member should be ignored.

HasPassword Specifies if the authentication involves a 'password' (as is almost always the case).

Password Any already specified password. If HasPassword is false, this member should be ignored.

HasAccount Specifies if the authentication involves an 'account' (as can be the case for FTP).

Account Any already specified account. If HasAccount is false, this member should be ignored.

Field Details



ServerName

Syntax

string ServerName;

Description

The name of the server (if applicable).


Diagnostic

Syntax

string Diagnostic;

Description

Any diagnostic message about the failure to log in (if applicable; it will typically be an english phrase or sentence).


HasRealm

Syntax

boolean HasRealm;

Description

Specifies if the authentication involves a 'realm' (as can be the case for HTTP).


Realm

Syntax

string Realm;

Description

Any already specified realm. If HasRealm is false, this member should be ignored.


HasUserName

Syntax

boolean HasUserName;

Description

Specifies if the authentication involves a 'user name' (as is almost always the case).


UserName

Syntax

string UserName;

Description

Any already specified user name. If HasUserName is false, this member should be ignored.


HasPassword

Syntax

boolean HasPassword;

Description

Specifies if the authentication involves a 'password' (as is almost always the case).


Password

Syntax

string Password;

Description

Any already specified password. If HasPassword is false, this member should be ignored.


HasAccount

Syntax

boolean HasAccount;

Description

Specifies if the authentication involves an 'account' (as can be the case for FTP).


Account

Syntax

string Account;

Description

Any already specified account. If HasAccount is false, this member should be ignored.

Top of Page