blob: a92e37fc1bb70b41af95fac7cb41d4ab74088775 (
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
|
<!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.gnome.DisplayManager.Display">
<method name="GetId">
<arg name="id" direction="out" type="o"/>
</method>
<method name="GetX11DisplayName">
<arg name="name" direction="out" type="s"/>
</method>
<method name="GetX11DisplayNumber">
<arg name="name" direction="out" type="i"/>
</method>
<method name="GetX11Cookie">
<arg name="x11_cookie" direction="out" type="ay"/>
</method>
<method name="GetX11AuthorityFile">
<arg name="filename" direction="out" type="s"/>
</method>
<method name="GetSeatId">
<arg name="filename" direction="out" type="s"/>
</method>
<method name="GetRemoteHostname">
<arg name="hostname" direction="out" type="s"/>
</method>
<method name="IsLocal">
<arg name="local" direction="out" type="b"/>
</method>
<method name="AddUserAuthorization">
<arg name="username" direction="in" type="s"/>
<arg name="filename" direction="out" type="s"/>
</method>
<method name="RemoveUserAuthorization">
<arg name="username" direction="in" type="s"/>
</method>
<method name="SetSlaveBusName">
<arg name="name" direction="in" type="s"/>
</method>
<method name="GetTimedLoginDetails">
<arg name="enabled" direction="out" type="b"/>
<arg name="username" direction="out" type="s"/>
<arg name="delay" direction="out" type="i"/>
</method>
</interface>
</node>
|