NetworkManager/introspection/nm-vpn-connection.xml
Lubomir Rintel a8e8e76641 dbus: fix up the XML formatting
The conversion script didn't do a very good job. It got fired.
2016-04-05 14:37:51 +02:00

49 lines
1.4 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<node name="/">
<!--
org.freedesktop.NetworkManager.VPN.Connection:
Represents an active connection to a Virtual Private Network.
-->
<interface name="org.freedesktop.NetworkManager.VPN.Connection">
<annotation name="org.gtk.GDBus.C.Name" value="VpnConnection"/>
<!--
PropertiesChanged:
@properties: A dictionary mapping property names to variant boxed values
-->
<signal name="PropertiesChanged">
<arg name="properties" type="a{sv}"/>
</signal>
<!--
VpnState:
The VPN-specific state of the connection.
Returns: <link linkend="NMVpnConnectionState">NMVpnConnectionState</link>
-->
<property name="VpnState" type="u" access="read"/>
<!--
Banner:
The banner string of the VPN connection.
-->
<property name="Banner" type="s" access="read"/>
<!--
VpnStateChanged:
@state: (<link linkend="NMVpnConnectionState">NMVpnConnectionState</link>) The new state of the VPN connection.
@reason: (<link linkend="NMVpnConnectionStateReason">NMVpnConnectionStateReason</link>) Reason code describing the change to the new state.
Emitted when the state of the VPN connection has changed.
-->
<signal name="VpnStateChanged">
<arg name="state" type="u"/>
<arg name="reason" type="u"/>
</signal>
</interface>
</node>