Warning, /frameworks/networkmanager-qt/src/dbus/introspection/org.freedesktop.NetworkManager.Settings.Connection.xml is written in an unsupported language. File is not indexed.
0001 <?xml version="1.0" encoding="UTF-8"?>
0002 <node name="/">
0003
0004 <!--
0005 org.freedesktop.NetworkManager.Settings.Connection:
0006
0007 Represents a single network connection configuration.
0008 -->
0009 <interface name="org.freedesktop.NetworkManager.Settings.Connection">
0010
0011 <!--
0012 Update:
0013 @properties: New connection settings, properties, and (optionally) secrets.
0014
0015 Update the connection with new settings and properties (replacing all
0016 previous settings and properties) and save the connection to disk. Secrets
0017 may be part of the update request, and will be either stored in persistent
0018 storage or sent to a Secret Agent for storage, depending on the flags
0019 associated with each secret.
0020 -->
0021 <method name="Update">
0022 <annotation name="org.qtproject.QtDBus.QtTypeName.In0" value="NMVariantMapMap"/>
0023 <arg name="properties" type="a{sa{sv}}" direction="in"/>
0024 </method>
0025
0026 <!--
0027 UpdateUnsaved:
0028 @properties: New connection settings, properties, and (optionally) secrets.
0029
0030 Update the connection with new settings and properties (replacing all
0031 previous settings and properties) but do not immediately save the
0032 connection to disk. Secrets may be part of the update request and may sent
0033 to a Secret Agent for storage, depending on the flags associated with each
0034 secret. Use the 'Save' method to save these changes to disk. Note that
0035 unsaved changes will be lost if the connection is reloaded from disk
0036 (either automatically on file change or due to an explicit
0037 ReloadConnections call).
0038 -->
0039 <method name="UpdateUnsaved">
0040 <annotation name="org.qtproject.QtDBus.QtTypeName.In0" value="NMVariantMapMap"/>
0041 <arg name="properties" type="a{sa{sv}}" direction="in"/>
0042 </method>
0043
0044 <!--
0045 Delete:
0046
0047 Delete the connection.
0048 -->
0049 <method name="Delete"/>
0050
0051 <!--
0052 GetSettings:
0053 @settings: The nested settings maps describing this object.
0054
0055 Get the settings maps describing this network configuration. This will
0056 never include any secrets required for connection to the network, as those
0057 are often protected. Secrets must be requested separately using the
0058 GetSecrets() call.
0059 -->
0060 <method name="GetSettings">
0061 <annotation name="org.qtproject.QtDBus.QtTypeName.Out0" value="NMVariantMapMap"/>
0062 <arg name="settings" type="a{sa{sv}}" direction="out"/>
0063 </method>
0064
0065 <!--
0066 GetSecrets:
0067 @setting_name: Name of the setting to return secrets for. If empty, all all secrets will be returned.
0068 @secrets: Nested settings maps containing secrets.
0069
0070 Get the secrets belonging to this network configuration. Only secrets from
0071 persistent storage or a Secret Agent running in the requestor's session
0072 will be returned. The user will never be prompted for secrets as a result
0073 of this request.
0074 -->
0075 <method name="GetSecrets">
0076 <arg name="setting_name" type="s" direction="in"/>
0077 <annotation name="org.qtproject.QtDBus.QtTypeName.Out0" value="NMVariantMapMap"/>
0078 <arg name="secrets" type="a{sa{sv}}" direction="out"/>
0079 </method>
0080
0081 <!--
0082 ClearSecrets:
0083
0084 Clear the secrets belonging to this network connection profile.
0085 -->
0086 <method name="ClearSecrets"/>
0087
0088 <!--
0089 Save:
0090
0091 Saves a "dirty" connection (that had previously been updated with
0092 UpdateUnsaved) to persistent storage.
0093 -->
0094 <method name="Save"/>
0095
0096 <!--
0097 Updated:
0098
0099 Emitted when any settings or permissions change. When handling this
0100 signal, clients should re-read the connection using the GetSettings method
0101 to get the changes and to ensure the client still has permission to access
0102 the connection.
0103 -->
0104 <signal name="Updated"/>
0105
0106 <!--
0107 Removed:
0108
0109 Emitted when this connection is no longer available. This happens when the
0110 connection is deleted or if it is no longer accessible by any of the
0111 system's logged-in users. After receipt of this signal, the object no
0112 longer exists. Also see the Settings.ConnectionRemoved signal.
0113 -->
0114 <signal name="Removed"/>
0115
0116 <!--
0117 Unsaved:
0118
0119 If set, indicates that the in-memory state of the connection does not
0120 match the on-disk state. This flag will be set when UpdateUnsaved() is
0121 called or when any connection details change, and cleared when the
0122 connection is saved to disk via Save() or from internal operations.
0123 -->
0124 <property name="Unsaved" type="b" access="read"/>
0125
0126 <!--
0127 PropertiesChanged:
0128 @properties: A dictionary mapping property names to variant boxed values.
0129
0130 DEPRECATED. Use the standard "PropertiesChanged" signal from "org.freedesktop.DBus.Properties" instead which exists since version NetworkManager 1.2.0.
0131 -->
0132 <signal name="PropertiesChanged">
0133 <annotation name="org.qtproject.QtDBus.QtTypeName.In0" value="QVariantMap"/>
0134 <arg name="properties" type="a{sv}" direction="In"/>
0135 </signal>
0136 </interface>
0137 </node>