summaryrefslogtreecommitdiffstats
path: root/src/interfaces/org.bluez.adapter.xml
blob: 4cdd6a55366378378b38b27243bd8873a4256202 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
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>