summaryrefslogtreecommitdiffstats
path: root/src/responder/ifp/ifp_iface.xml
blob: 1b9acd113db3f30904865e944d7214a7b45c2b34 (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
<!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.sssd.infopipe">
        <annotation value="infopipe_iface" name="org.freedesktop.DBus.GLib.CSymbol"/>

        <method name="Ping">
            <!-- manual argument parsing, raw handler -->
            <annotation name="org.freedesktop.sssd.RawHandler" value="true"/>
        </method>

        <method name="GetUserAttr">
            <arg name="user" type="s" direction="in" />
            <arg name="attr" type="as" direction="in" />
            <arg name="values" type="a{sv}" direction="out"/>
            <annotation name="org.freedesktop.sssd.RawHandler" value="true"/>
        </method>

        <method name="GetUserGroups">
            <arg name="user" type="s" direction="in" />
            <arg name="values" type="as" direction="out"/>
        </method>

        <method name="FindDomainByName">
            <arg name="name" type="s" direction="in" />
            <arg name="domain" type="o" direction="out"/>
        </method>

        <method name="ListDomains">
            <arg name="domain" type="ao" direction="out"/>
        </method>

    </interface>

    <interface name="org.freedesktop.sssd.infopipe.Domains">
        <annotation name="org.freedesktop.DBus.GLib.CSymbol" value="infopipe_domain"/>

        <property name="name" type="s" access="read"/>
        <property name="provider" type="s" access="read"/>
        <property name="primary_servers" type="as" access="read"/>
        <property name="backup_servers" type="as" access="read"/>
        <property name="min_id" type="u" access="read"/>
        <property name="max_id" type="u" access="read"/>
        <property name="realm" type="s" access="read"/>
        <property name="forest" type="s" access="read"/>
        <property name="login_format" type="s" access="read"/>
        <property name="fully_qualified_name_format" type="s" access="read"/>
        <property name="enumerable" type="b" access="read"/>
        <property name="use_fully_qualified_names" type="b" access="read"/>
        <property name="subdomain" type="b" access="read"/>
        <property name="parent_domain" type="o" access="read"/>
    </interface>
</node>