diff options
| author | Michael Biebl <biebl@debian.org> | 2016-04-06 00:46:19 +0200 |
|---|---|---|
| committer | Michael Biebl <biebl@debian.org> | 2016-04-06 00:46:19 +0200 |
| commit | 2bfb3eb7d0323e69affca154395f51d8b577414d (patch) | |
| tree | e3130a5146441296df6d08a0f4ac7222a854c8f8 /introspection/nm-agent-manager.xml | |
| parent | d9c99a29a0d3384c9c3d2adce430f5cb1134ab6a (diff) | |
Imported Upstream version 1.1.93 upstream/1.1.93
Diffstat (limited to 'introspection/nm-agent-manager.xml')
| -rw-r--r-- | introspection/nm-agent-manager.xml | 63 |
1 files changed, 25 insertions, 38 deletions
diff --git a/introspection/nm-agent-manager.xml b/introspection/nm-agent-manager.xml index 52460eee..86b4404a 100644 --- a/introspection/nm-agent-manager.xml +++ b/introspection/nm-agent-manager.xml @@ -1,50 +1,37 @@ -<?xml version="1.0" encoding="UTF-8" ?> - -<node name="/org/freedesktop/NetworkManager/AgentManager" xmlns:tp="http://telepathy.freedesktop.org/wiki/DbusSpec#extensions-v0"> +<?xml version="1.0" encoding="UTF-8"?> +<node name="/org/freedesktop/NetworkManager/AgentManager"> <interface name="org.freedesktop.NetworkManager.AgentManager"> - <method name="Register"> - <annotation name="org.gtk.GDBus.DocString" value=" + <!-- + Register: + @identifier: Identifies this agent; only one agent in each user session may use the same identifier. Identifier formatting follows the same rules as D-Bus bus names with the exception that the ':' character is not allowed. The valid set of characters is "[A-Z][a-z][0-9]_-." and the identifier is limited in length to 255 characters with a minimum of 3 characters. An example valid identifier is 'org.gnome.nm-applet' (without quotes). + Called by secret Agents to register their ability to provide and save network secrets. - " /> - <arg name="identifier" type="s" direction="in"> - <annotation name="org.gtk.GDBus.DocString" value=" - Identifies this agent; only one agent in each user session may use the - same identifier. Identifier formatting follows the same rules as - D-Bus bus names with the exception that the ':' character is not - allowed. The valid set of characters is "[A-Z][a-z][0-9]_-." and the - identifier is limited in length to 255 characters with a minimum - of 3 characters. An example valid identifier is 'org.gnome.nm-applet' - (without quotes). - " /> - </arg> + --> + <method name="Register"> + <arg name="identifier" type="s" direction="in"/> </method> - <method name="RegisterWithCapabilities"> - <annotation name="org.gtk.GDBus.DocString" value=" + <!-- + RegisterWithCapabilities: + @identifier: See the Register() method's identifier argument. + @capabilities: (<link linkend="NMSecretAgentCapabilities">NMSecretAgentCapabilities</link>) Indicates various agent capabilities to NetworkManager. + Like Register() but indicates agent capabilities to NetworkManager. - " /> - <arg name="identifier" type="s" direction="in"> - <annotation name="org.gtk.GDBus.DocString" value=" - See the Register() method's identifier argument. - " /> - </arg> - <arg name="capabilities" type="u" direction="in" tp:type="NM_SECRET_AGENT_CAPABILITIES"> - <annotation name="org.gtk.GDBus.DocString" value=" - Indicates various agent capabilities to NetworkManager. - " /> - </arg> + --> + <method name="RegisterWithCapabilities"> + <arg name="identifier" type="s" direction="in"/> + <arg name="capabilities" type="u" direction="in"/> </method> - <method name="Unregister"> - <annotation name="org.gtk.GDBus.DocString" value=" - Called by secret Agents to notify NetworkManager that they will no - longer handle requests for network secrets. Agents are automatically - unregistered when they disconnect from D-Bus. - " /> - </method> + <!-- + Unregister: + Called by secret Agents to notify NetworkManager that they will no longer + handle requests for network secrets. Agents are automatically unregistered + when they disconnect from D-Bus. + --> + <method name="Unregister"/> </interface> </node> - |