mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-01-04 06:20:17 +01:00
* introspection/Makefile.am: * introspection/nm-settings.xml: * introspection/nm-settings-connection.xml: added Settings interfaces. * libnm-glib/nm-settings.[ch]: * libnm-glib/Makefile.am: added abstract class for Settings interfaces containing the DBus implementation. git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@2656 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
32 lines
959 B
XML
32 lines
959 B
XML
<?xml version="1.0" encoding="UTF-8" ?>
|
|
|
|
<node name="/">
|
|
|
|
<interface name="org.freedesktop.NetworkManager.Settings.Connection">
|
|
|
|
<method name="GetID">
|
|
<annotation name="org.freedesktop.DBus.GLib.CSymbol" value="impl_connection_settings_get_id"/>
|
|
<arg name="id" type="s" direction="out"/>
|
|
</method>
|
|
|
|
<method name="GetSettings">
|
|
<annotation name="org.freedesktop.DBus.GLib.CSymbol" value="impl_connection_settings_get_settings"/>
|
|
<arg name="settings" type="a{sa{sv}}" direction="out"/>
|
|
</method>
|
|
|
|
<method name="GetSecrets">
|
|
<annotation name="org.freedesktop.DBus.GLib.CSymbol" value="impl_connection_settings_get_secrets"/>
|
|
<arg name="setting_name" type="s" direction="in"/>
|
|
<arg name="secrets" type="a{sv}" direction="out"/>
|
|
</method>
|
|
|
|
<signal name="Updated">
|
|
<arg name="settings" type="a{sa{sv}}"/>
|
|
</signal>
|
|
|
|
<signal name="Removed">
|
|
</signal>
|
|
|
|
</interface>
|
|
|
|
</node>
|