mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-01-22 06:30:28 +01:00
* Global rename of NMConnectionSettings -> NMExportedConnection to cut down on confusing names * Add 'path' and 'scope' properties to NMConnection since both NM and the applet were having to hack this in anyway. Remove the 'path' stuff from NMExportedConnection * Internally rename NMConnectionType -> NMConnectionScope * Provide default implementations of the 'get_id' and 'get_settings' methods of NMExportedConnection git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@3334 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
42 lines
1.4 KiB
XML
42 lines
1.4 KiB
XML
<?xml version="1.0" encoding="UTF-8" ?>
|
|
|
|
<node name="/">
|
|
|
|
<interface name="org.freedesktop.NetworkManagerSettings.Connection">
|
|
|
|
<method name="GetID">
|
|
<annotation name="org.freedesktop.DBus.GLib.CSymbol" value="impl_exported_connection_get_id"/>
|
|
<arg name="id" type="s" direction="out"/>
|
|
</method>
|
|
|
|
<method name="GetSettings">
|
|
<annotation name="org.freedesktop.DBus.GLib.CSymbol" value="impl_exported_connection_get_settings"/>
|
|
<arg name="settings" type="a{sa{sv}}" direction="out"/>
|
|
</method>
|
|
|
|
<signal name="Updated">
|
|
<arg name="settings" type="a{sa{sv}}"/>
|
|
</signal>
|
|
|
|
<signal name="Removed">
|
|
</signal>
|
|
|
|
</interface>
|
|
|
|
<!-- Secrets have a separate interface so that they can be locked down -->
|
|
<interface name="org.freedesktop.NetworkManagerSettings.Connection.Secrets">
|
|
|
|
<method name="GetSecrets">
|
|
<annotation name="org.freedesktop.DBus.GLib.CSymbol" value="impl_exported_connection_get_secrets"/>
|
|
<annotation name="org.freedesktop.DBus.GLib.Async" value=""/>
|
|
<arg name="setting_name" type="s" direction="in"/>
|
|
<!-- Array of strings of key names in the Setting for which NM thinks
|
|
a secrets may be required. -->
|
|
<arg name="hints" type="as" direction="in"/>
|
|
<arg name="request_new" type="b" direction="in"/>
|
|
<arg name="secrets" type="a{sv}" direction="out"/>
|
|
</method>
|
|
|
|
</interface>
|
|
|
|
</node>
|