blob: 9f1e0277e39a5982cd20d335d66b3a6cd548a044 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<?xml version="1.0" encoding="UTF-8"?>
<!-- https://github.com/r10r/bluez/blob/master/doc/obex-agent-api.txt -->
<node name="/org/trinitydesktop/tdeobex">
<interface name="org.freedesktop.DBus.Introspectable">
<method name="Introspect">
<arg name="xml" type="s" direction="out"/>
</method>
</interface>
<interface name="org.bluez.obex.Agent1">
<method name="Release">
<annotation name="org.freedesktop.DBus.GLib.Async"/>
</method>
<method name="AuthorizePush">
<annotation name="org.freedesktop.DBus.GLib.Async"/>
<arg name="transfer" direction="in" type="o"/>
<arg name="filepath" direction="out" type="s"/>
</method>
<method name="Cancel">
<annotation name="org.freedesktop.DBus.GLib.Async"/>
</method>
</interface>
</node>
|