-
Notifications
You must be signed in to change notification settings - Fork 12
/
com.ubuntu.auth.ExampleBroker.xml
49 lines (46 loc) · 1.88 KB
/
com.ubuntu.auth.ExampleBroker.xml
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
<?xml version="1.0" encoding="UTF-8"?>
<!-- This file should be added in /usr/share/dbus-1/interfaces/ to configure the ExampleBroker -->
<!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="com.ubuntu.authd.Broker">
<method name="NewSession">
<arg type="s" direction="in" name="username"/>
<arg type="s" direction="in" name="lang"/>
<arg type="s" direction="in" name="mode"/>
<arg type="s" direction="out" name="sessionID"/>
<arg type="s" direction="out" name="encryptionKey"/>
</method>
<method name="GetAuthenticationModes">
<arg type="s" direction="in" name="sessionID"/>
<arg type="aa{ss}" direction="in" name="supportedUILayouts"/>
<arg type="aa{ss}" direction="out" name="authenticationModes"/>
</method>
<method name="SelectAuthenticationMode">
<arg type="s" direction="in" name="sessionID"/>
<arg type="s" direction="in" name="authenticationModeName"/>
<arg type="a{ss}" direction="out" name="uiLayoutInfo"/>
</method>
<method name="IsAuthenticated">
<arg type="s" direction="in" name="sessionID"/>
<arg type="s" direction="in" name="authenticationData"/>
<arg type="s" direction="out" name="access"/>
<arg type="s" direction="out" name="data"/>
</method>
<method name="EndSession">
<arg type="s" direction="in" name="sessionID"/>
</method>
<method name="UserPreCheck">
<arg type="s" direction="in" name="username"/>
</method>
<method name="CancelIsAuthenticated">
<arg type="s" direction="in" name="sessionID"/>
</method>
</interface>
<interface name="org.freedesktop.DBus.Introspectable">
<method name="Introspect">
<arg name="out" direction="out" type="s"/>
</method>
</interface>
</node>