diff options
author | Emanoil Kotsev <deloptes@gmail.com> | 2018-11-12 21:18:37 +0100 |
---|---|---|
committer | Emanoil Kotsev <deloptes@gmail.com> | 2023-01-14 03:44:08 +0000 |
commit | e274309d9293777aaaecebccaa29a339a05bd4f9 (patch) | |
tree | a00349c31b90cdedaa6e351dfe93950b55903dce /src/interfaces/org.bluez.adapter.xml | |
parent | 63c233987977aa48b701edeb47079a6153359fbe (diff) | |
download | tdebluez-e274309d9293777aaaecebccaa29a339a05bd4f9.tar.gz tdebluez-e274309d9293777aaaecebccaa29a339a05bd4f9.zip |
Based on KDE3 bluez4 version a TDE bluez5 version was created
Signed-off-by: Emanoil Kotsev <deloptes@gmail.com>
Diffstat (limited to 'src/interfaces/org.bluez.adapter.xml')
-rw-r--r-- | src/interfaces/org.bluez.adapter.xml | 88 |
1 files changed, 88 insertions, 0 deletions
diff --git a/src/interfaces/org.bluez.adapter.xml b/src/interfaces/org.bluez.adapter.xml new file mode 100644 index 0000000..4cdd6a5 --- /dev/null +++ b/src/interfaces/org.bluez.adapter.xml @@ -0,0 +1,88 @@ +<!DOCTYPE node PUBLIC "-//freedesktop//DTD D-BUS Object Introspection 1.0//EN" +"http://www.freedesktop.org/standards/dbus/1.0/introspect.dtd"> +<node> +<!-- + <interface name="org.freedesktop.DBus.Introspectable"> + <method name="Introspect"> + <arg name="xml" type="s" direction="out" /> + </method> + </interface> + --> + <interface name="org.bluez.Adapter1"> + <method name="StartDiscovery"></method> + <method name="SetDiscoveryFilter"> + <arg name="properties" type="a{sv}" direction="in" /> + </method> + <method name="StopDiscovery"></method> + <method name="RemoveDevice"> + <arg name="device" type="o" direction="in" /> + </method> + <property name="Address" type="s" access="read"></property> + <property name="Name" type="s" access="read"></property> + <property name="Alias" type="s" access="readwrite"></property> + <property name="Class" type="u" access="read"></property> + <property name="Powered" type="b" access="readwrite"></property> + <property name="Discoverable" type="b" access="readwrite"></property> + <property name="DiscoverableTimeout" type="u" access="readwrite"></property> + <property name="Pairable" type="b" access="readwrite"></property> + <property name="PairableTimeout" type="u" access="readwrite"></property> + <property name="Discovering" type="b" access="read"></property> + <property name="UUIDs" type="as" access="read"></property> + <property name="Modalias" type="s" access="read"></property> + </interface> + <interface name="org.freedesktop.DBus.Properties"> + <method name="Get"> + <arg name="interface" type="s" direction="in" /> + <arg name="name" type="s" direction="in" /> + <arg name="value" type="v" direction="out" /> + </method> + <method name="Set"> + <arg name="interface" type="s" direction="in" /> + <arg name="name" type="s" direction="in" /> + <arg name="value" type="v" direction="in" /> + </method> + <method name="GetAll"> + <arg name="interface" type="s" direction="in" /> + <arg name="properties" type="a{sv}" direction="out" /> + </method> + <signal name="PropertiesChanged"> + <arg name="interface" type="s" /> + <arg name="changed_properties" type="a{sv}" /> + <arg name="invalidated_properties" type="as" /> + </signal> + </interface> + <interface name="org.bluez.GattManager1"> + <method name="RegisterApplication"> + <arg name="application" type="o" direction="in" /> + <arg name="options" type="a{sv}" direction="in" /> + </method> + <method name="UnregisterApplication"> + <arg name="application" type="o" direction="in" /> + </method> + </interface> + <interface name="org.bluez.Media1"> + <method name="RegisterEndpoint"> + <arg name="endpoint" type="o" direction="in" /> + <arg name="properties" type="a{sv}" direction="in" /> + </method> + <method name="UnregisterEndpoint"> + <arg name="endpoint" type="o" direction="in" /> + </method> + <method name="RegisterPlayer"> + <arg name="player" type="o" direction="in" /> + <arg name="properties" type="a{sv}" direction="in" /> + </method> + <method name="UnregisterPlayer"> + <arg name="player" type="o" direction="in" /> + </method> + </interface> + <interface name="org.bluez.NetworkServer1"> + <method name="Register"> + <arg name="uuid" type="s" direction="in" /> + <arg name="bridge" type="s" direction="in" /> + </method> + <method name="Unregister"> + <arg name="uuid" type="s" direction="in" /> + </method> + </interface> +</node>
\ No newline at end of file |