summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/task/XPasswordContainer.idl
diff options
context:
space:
mode:
Diffstat (limited to 'offapi/com/sun/star/task/XPasswordContainer.idl')
-rw-r--r--offapi/com/sun/star/task/XPasswordContainer.idl11
1 files changed, 0 insertions, 11 deletions
diff --git a/offapi/com/sun/star/task/XPasswordContainer.idl b/offapi/com/sun/star/task/XPasswordContainer.idl
index a4c2344fe44c..502c155dafaf 100644
--- a/offapi/com/sun/star/task/XPasswordContainer.idl
+++ b/offapi/com/sun/star/task/XPasswordContainer.idl
@@ -33,16 +33,13 @@
#include <com/sun/star/task/XInteractionHandler.idl>
-//=============================================================================
module com { module sun { module star { module task {
-//=============================================================================
/** Allows to save passwords with URL-pattern, to use them later.
*/
published interface XPasswordContainer : com::sun::star::uno::XInterface
{
- //-------------------------------------------------------------------------
/** Save passwords in to the container.
@param Url URL-pattern, that will be used later to retrieve
@@ -58,7 +55,6 @@ published interface XPasswordContainer : com::sun::star::uno::XInterface
*/
void add( [in] string Url, [in] string UserName, [in] sequence<string> Passwords, [in] XInteractionHandler Handler );
- //-------------------------------------------------------------------------
/** Save passwords in to the container, and store them in the file.
@param Url URL-pattern, that will be used later to retrieve
@@ -74,7 +70,6 @@ published interface XPasswordContainer : com::sun::star::uno::XInterface
*/
void addPersistent( [in] string Url, [in] string UserName, [in] sequence<string> Passwords, [in] XInteractionHandler Handler );
- //-------------------------------------------------------------------------
/** Find users with passwords for the url pattern.
@param Url URL-pattern to retrieve password for.
@@ -85,7 +80,6 @@ published interface XPasswordContainer : com::sun::star::uno::XInterface
*/
UrlRecord find( [in] string Url, [in] XInteractionHandler Handler );
- //-------------------------------------------------------------------------
/** Find passwords for the url pattern and username.
@param Url URL-pattern to retrieve passwords for.
@@ -98,7 +92,6 @@ published interface XPasswordContainer : com::sun::star::uno::XInterface
*/
UrlRecord findForName( [in] string Url, [in] string UserName , [in] XInteractionHandler Handler );
- //-------------------------------------------------------------------------
/** Remove passwords for the url pattern and username.
@param Url URL-pattern to remove passwords for.
@@ -109,7 +102,6 @@ published interface XPasswordContainer : com::sun::star::uno::XInterface
void remove( [in] string Url, [in] string UserName );
- //-------------------------------------------------------------------------
/** Remove passwords for the url pattern and username from the file.
@param Url URL-pattern to remove passwords for.
@@ -119,12 +111,10 @@ published interface XPasswordContainer : com::sun::star::uno::XInterface
*/
void removePersistent( [in] string Url, [in] string UserName );
- //-------------------------------------------------------------------------
/** Clean the file.
*/
void removeAllPersistent();
- //-------------------------------------------------------------------------
/** Get all records from the file.
@returns List of url-records.
@@ -133,7 +123,6 @@ published interface XPasswordContainer : com::sun::star::uno::XInterface
};
-//=============================================================================
}; }; }; };