summary refs log tree commit diff
path: root/introspection/nm-active-connection.xml
diff options
context:
space:
mode:
authorMichael Biebl <biebl@debian.org>2016-04-06 00:46:19 +0200
committerMichael Biebl <biebl@debian.org>2016-04-06 00:46:19 +0200
commit2bfb3eb7d0323e69affca154395f51d8b577414d (patch)
treee3130a5146441296df6d08a0f4ac7222a854c8f8 /introspection/nm-active-connection.xml
parentd9c99a29a0d3384c9c3d2adce430f5cb1134ab6a (diff)
Imported Upstream version 1.1.93 upstream/1.1.93
Diffstat (limited to 'introspection/nm-active-connection.xml')
-rw-r--r--introspection/nm-active-connection.xml258
1 files changed, 130 insertions, 128 deletions
diff --git a/introspection/nm-active-connection.xml b/introspection/nm-active-connection.xml
index 59bf78f4..a4e94170 100644
--- a/introspection/nm-active-connection.xml
+++ b/introspection/nm-active-connection.xml
@@ -1,154 +1,156 @@
-<?xml version="1.0" encoding="UTF-8" ?>
+<?xml version="1.0" encoding="UTF-8"?>
+<node name="/">
 
-<node name="/" xmlns:tp="http://telepathy.freedesktop.org/wiki/DbusSpec#extensions-v0">
+  <!--
+      org.freedesktop.NetworkManager.Connection.Active:
+
+      Objects that implement the Connection.Active interface represent an
+      attempt to connect to a network using the details provided by a Connection
+      object. The Connection.Active object tracks the life-cycle of the
+      connection attempt and if successful indicates whether the connected
+      network is the "default" or preferred network for access. NetworkManager
+      has the concept of connections, which can be thought of as settings, a
+      profile or a configuration that can be applied on a networking device.
+      Such settings-connections are exposed as D-Bus object and the
+      active-connection expresses this relationship between device and
+      settings-connection. At any time a settings-connection can only be
+      activated on one device and vice versa. However, during activation and
+      deactivation multiple active-connections can reference the same device or
+      settings-connection as they are waiting to be activated or to be
+      deactivated.
+  -->
   <interface name="org.freedesktop.NetworkManager.Connection.Active">
     <annotation name="org.gtk.GDBus.C.Name" value="ActiveConnection"/>
-    <annotation name="org.gtk.GDBus.DocString" value="
-      Objects that implement the Connection.Active interface represent an attempt
-      to connect to a network using the details provided by a Connection object.
-      The Connection.Active object tracks the life-cycle of the connection
-      attempt and if successful indicates whether the connected network is the
-      &quot;default&quot; or preferred network for access.
-      NetworkManager has the concept of connections, which can be thought of as
-      settings, a profile or a configuration that can be applied on a networking
-      device.
-      Such settings-connections are exposed as D-Bus object and the active-connection
-      expresses this relationship between device and settings-connection.
-      At any time a settings-connection can only be activated on one device and vice
-      versa. However, during activation and deactivation multiple active-connections
-      can reference the same device or settings-connection as they are waiting to
-      be activated or to be deactivated.
-    " />
-
-    <property name="Connection" type="o" access="read">
-      <annotation name="org.gtk.GDBus.DocString" value="
+
+    <!--
+        Connection:
+
         The path of the connection.
-      " />
-    </property>
-    <property name="SpecificObject" type="o" access="read">
-      <annotation name="org.gtk.GDBus.DocString" value="
-        A specific object associated with the active connection.  This property
+    -->
+    <property name="Connection" type="o" access="read"/>
+
+    <!--
+        SpecificObject:
+
+        A specific object associated with the active connection. This property
         reflects the specific object used during connection activation, and will
         not change over the lifetime of the ActiveConnection once set.
-      " />
-    </property>
-    <property name="Id" type="s" access="read">
-      <annotation name="org.gtk.GDBus.DocString" value="
-        The ID of the connection, provided as a convenience so that clients
-        do not have to retrieve all connection details.
-      " />
-    </property>
-    <property name="Uuid" type="s" access="read">
-      <annotation name="org.gtk.GDBus.DocString" value="
-        The UUID of the connection, provided as a convenience so that clients
-        do not have to retrieve all connection details.
-      " />
-    </property>
-    <property name="Type" type="s" access="read">
-      <annotation name="org.gtk.GDBus.DocString" value="
-        The type of the connection, provided as a convenience so that clients
-        do not have to retrieve all connection details.
-      " />
-    </property>
-    <property name="Devices" type="ao" access="read">
-      <annotation name="org.gtk.GDBus.DocString" value="
+    -->
+    <property name="SpecificObject" type="o" access="read"/>
+
+    <!--
+        Id:
+
+        The ID of the connection, provided as a convenience so that clients do not
+        have to retrieve all connection details.
+    -->
+    <property name="Id" type="s" access="read"/>
+
+    <!--
+        Uuid:
+
+        The UUID of the connection, provided as a convenience so that clients do
+        not have to retrieve all connection details.
+    -->
+    <property name="Uuid" type="s" access="read"/>
+
+    <!--
+        Type:
+
+        The type of the connection, provided as a convenience so that clients do
+        not have to retrieve all connection details.
+    -->
+    <property name="Type" type="s" access="read"/>
+
+    <!--
+        Devices:
+
         Array of object paths representing devices which are part of this active
         connection.
-      " />
-    </property>
-    <property name="State" type="u" access="read" tp:type="NM_ACTIVE_CONNECTION_STATE">
-      <annotation name="org.gtk.GDBus.DocString" value="
+    -->
+    <property name="Devices" type="ao" access="read"/>
+
+    <!--
+        State:
+
         The state of this active connection.
-      " />
-    </property>
-    <property name="Default" type="b" access="read">
-      <annotation name="org.gtk.GDBus.DocString" value="
+
+        Returns: <link linkend="NMActiveConnectionState">NMActiveConnectionState</link>
+    -->
+    <property name="State" type="u" access="read"/>
+
+    <!--
+        Default:
+
         Whether this active connection is the default IPv4 connection, i.e.
         whether it currently owns the default IPv4 route.
-      " />
-    </property>
-    <property name="Ip4Config" type="o" access="read">
-      <annotation name="org.gtk.GDBus.DocString" value="
+    -->
+    <property name="Default" type="b" access="read"/>
+
+    <!--
+        Ip4Config:
+
         Object path of the Ip4Config object describing the configuration of the
         connection. Only valid when the connection is in the
         NM_ACTIVE_CONNECTION_STATE_ACTIVATED state.
-      " />
-    </property>
-    <property name="Dhcp4Config" type="o" access="read">
-      <annotation name="org.gtk.GDBus.DocString" value="
-        Object path of the Dhcp4Config object describing the DHCP options
-        returned by the DHCP server (assuming the connection used DHCP). Only
-        valid when the connection is in the NM_ACTIVE_CONNECTION_STATE_ACTIVATED
-        state.
-      " />
-    </property>
-    <property name="Default6" type="b" access="read">
-      <annotation name="org.gtk.GDBus.DocString" value="
+    -->
+    <property name="Ip4Config" type="o" access="read"/>
+
+    <!--
+        Dhcp4Config:
+
+        Object path of the Dhcp4Config object describing the DHCP options returned
+        by the DHCP server (assuming the connection used DHCP). Only valid when
+        the connection is in the NM_ACTIVE_CONNECTION_STATE_ACTIVATED state.
+    -->
+    <property name="Dhcp4Config" type="o" access="read"/>
+
+    <!--
+        Default6:
+
         Whether this active connection is the default IPv6 connection, i.e.
         whether it currently owns the default IPv6 route.
-      " />
-    </property>
-    <property name="Ip6Config" type="o" access="read">
-      <annotation name="org.gtk.GDBus.DocString" value="
+    -->
+    <property name="Default6" type="b" access="read"/>
+
+    <!--
+        Ip6Config:
+
         Object path of the Ip6Config object describing the configuration of the
         connection. Only valid when the connection is in the
         NM_ACTIVE_CONNECTION_STATE_ACTIVATED state.
-      " />
-    </property>
-    <property name="Dhcp6Config" type="o" access="read">
-      <annotation name="org.gtk.GDBus.DocString" value="
-        Object path of the Dhcp6Config object describing the DHCP options
-        returned by the DHCP server (assuming the connection used DHCP). Only
-        valid when the connection is in the NM_ACTIVE_CONNECTION_STATE_ACTIVATED
-        state.
-      " />
-    </property>
-    <property name="Vpn" type="b" access="read">
-      <annotation name="org.gtk.GDBus.DocString" value="
+    -->
+    <property name="Ip6Config" type="o" access="read"/>
+
+    <!--
+        Dhcp6Config:
+
+        Object path of the Dhcp6Config object describing the DHCP options returned
+        by the DHCP server (assuming the connection used DHCP). Only valid when
+        the connection is in the NM_ACTIVE_CONNECTION_STATE_ACTIVATED state.
+    -->
+    <property name="Dhcp6Config" type="o" access="read"/>
+
+    <!--
+        Vpn:
+
         Whether this active connection is also a VPN connection.
-      " />
-    </property>
-    <property name="Master" type="o" access="read">
-      <annotation name="org.gtk.GDBus.DocString" value="
+    -->
+    <property name="Vpn" type="b" access="read"/>
+
+    <!--
+        Master:
+
         The path to the master device if the connection is a slave.
-      " />
-    </property>
+    -->
+    <property name="Master" type="o" access="read"/>
 
+    <!--
+        PropertiesChanged:
+        @properties: A dictionary mapping property names to variant boxed values
+    -->
     <signal name="PropertiesChanged">
-        <arg name="properties" type="a{sv}" tp:type="String_Variant_Map">
-            <annotation name="org.gtk.GDBus.DocString" value="
-                A dictionary mapping property names to variant boxed values
-            " />
-        </arg>
+      <arg name="properties" type="a{sv}"/>
     </signal>
-
-    <tp:enum name="NM_ACTIVE_CONNECTION_STATE" type="u">
-      <tp:enumvalue suffix="UNKNOWN" value="0">
-        <annotation name="org.gtk.GDBus.DocString" value="
-          The active connection is in an unknown state.
-        " />
-      </tp:enumvalue>
-      <tp:enumvalue suffix="ACTIVATING" value="1">
-        <annotation name="org.gtk.GDBus.DocString" value="
-          The connection is activating.
-        " />
-      </tp:enumvalue>
-      <tp:enumvalue suffix="ACTIVATED" value="2">
-        <annotation name="org.gtk.GDBus.DocString" value="
-          The connection is activated.
-        " />
-      </tp:enumvalue>
-      <tp:enumvalue suffix="DEACTIVATING" value="3">
-        <annotation name="org.gtk.GDBus.DocString" value="
-          The connection is being torn down and cleaned up.
-        " />
-      </tp:enumvalue>
-      <tp:enumvalue suffix="DEACTIVATED" value="4">
-        <annotation name="org.gtk.GDBus.DocString" value="
-          The connection is no longer active.
-        " />
-      </tp:enumvalue>
-    </tp:enum>
   </interface>
 </node>
-