From 3fca534d2f71febdf9f4d6399a7e1b610bac90f6 Mon Sep 17 00:00:00 2001 From: Stef Walter Date: Tue, 1 Mar 2011 13:25:57 +0100 Subject: Allow specifying an alias in the CreateCollection() method. This creates the collection with the given alias, or returns an already existing collection in a race free manner. --- secret-service/org.freedesktop.Secrets.xml | 15 +++++++++++++++ secret-service/specification.xml | 24 ++++++++++++++++++++++++ 2 files changed, 39 insertions(+) (limited to 'secret-service') diff --git a/secret-service/org.freedesktop.Secrets.xml b/secret-service/org.freedesktop.Secrets.xml index 6a9e495..7d23c78 100644 --- a/secret-service/org.freedesktop.Secrets.xml +++ b/secret-service/org.freedesktop.Secrets.xml @@ -121,6 +121,21 @@ properties = { "Label": "MyCollection" } + + + + If creating this connection for a well known alias then a string like + default. If an collection with this well-known alias already + exists, then that collection will be returned instead of creating a new + collection. Any readwrite properties provided to this function will be set on + the collection. + + + Set this to an empty string if the new collection should not be associated with a + well known alias. + + + The new collection object, or '/' if prompting is necessary. diff --git a/secret-service/specification.xml b/secret-service/specification.xml index 65045d6..a0a293b 100644 --- a/secret-service/specification.xml +++ b/secret-service/specification.xml @@ -157,7 +157,31 @@ information. In this case, a prompt object is returned. It must be acted upon in order for the collection to be deleted. + + + Aliases + + Collections may be accessed via well known aliases. For example an alias + called default tells applications which is the default + collection to store secrets. + + The aliased collections will be available at a + well-known DBus object path. + + If an application needs to create a collection with a given alias, this can + be done in a race free fashion by specifying the alias parameter of the + CreateCollection() + method on the service interface. If a collection with that alias already exists, + then it will be returned instead of creating a new one. + + For applications like password managers it can be useful to allow the user to + configure which collection is associated with which well known alias. To alias or + unalias a collection use the + SetAlias() method on the + service interface. Use the + ReadAlias() method on the + service interface to discover which collection is associated with a given alias. -- cgit v1.2.3-54-g00ecf