|
Syntax
- void add
(
- string Url,
- string UserName,
- sequence< string > Passwords,
- com::sun::star::task::XInteractionHandler Handler );
Description
Save passwords in to the container.
Parameter Url
- URL-pattern, that will be used later to retrieve
passwords.
Parameter UseName
- The username.
Parameter Passwords
- The password-list.
Parameter Handler
- The handler to get superpassword to en/decript passwords
Syntax
- void addPersistent
(
- string Url,
- string UserName,
- sequence< string > Passwords,
- com::sun::star::task::XInteractionHandler Handler );
Description
Save passwords in to the container, and store them in the file.
Parameter Url
- URL-pattern, that will be used later to retrieve
passwords.
Parameter UseName
- The username.
Parameter Passwords
- The password-list.
Parameter Handler
- The handler to get superpassword to en/decript passwords
Syntax
- com::sun::star::task::UrlRecord find
(
- string Url,
- com::sun::star::task::XInteractionHandler Handler );
Description
Find users with passwords for the url pattern.
Parameter Url
- URL-pattern to retrieve password for.
Parameter Handler
- The handler to get superpassword to en/decript passwords
Returns
- Best matched url-pattern with user-records list.
Syntax
- com::sun::star::task::UrlRecord findForName
(
- string Url,
- string UserName,
- com::sun::star::task::XInteractionHandler Handler );
Description
Find passwords for the url pattern and username.
Parameter Url
- URL-pattern to retrieve passwords for.
Parameter UserName
- Username to retrieve passwords for.
Parameter Handler
- The handler to get superpassword to en/decript passwords
Returns
- Best matched url-pattern for the username.
Syntax
- void remove
(
- string Url,
- string UserName );
Description
Remove passwords for the url pattern and username.
Parameter Url
- URL-pattern to remove passwords for.
Parameter UserName
- Username to remove passwords for.
Syntax
- void removePersistent
(
- string Url,
- string UserName );
Description
Remove passwords for the url pattern and username from the file.
Parameter Url
- URL-pattern to remove passwords for.
Parameter UserName
- Username to remove passwords for.
Syntax
- void removeAllPersistent
();
Description
Clean the file.
Syntax
- sequence< com::sun::star::task::UrlRecord > getAllPersistent
(
- com::sun::star::task::XInteractionHandler Handler );
Description
Get all records from the file.
Returns
- List of url-records.
|