summaryrefslogtreecommitdiffstats
path: root/src/providers/data_provider/dp_iface.xml
blob: 2bfa9dfa7e9d02d2d12c3358967f6969438a97a2 (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
<!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.DataProvider.Client">
        <annotation value="iface_dp_client" name="org.freedesktop.DBus.GLib.CSymbol"/>
        <method name="Register">
            <arg name="Name" type="s" direction="in" />
        </method>
    </interface>

    <interface name="org.freedesktop.sssd.DataProvider.Backend">
        <annotation value="iface_dp_backend" name="org.freedesktop.DBus.GLib.CSymbol"/>
        <method name="IsOnline">
            <arg name="domain_name" type="s" direction="in" />
            <arg name="status" type="b" direction="out" />
        </method>
    </interface>

    <interface name="org.freedesktop.sssd.DataProvider.Failover">
        <annotation value="iface_dp_failover" name="org.freedesktop.DBus.GLib.CSymbol"/>
        <method name="ListServices">
            <arg name="domain_name" type="s" direction="in" />
            <arg name="services" type="as" direction="out" />
        </method>
        <method name="ActiveServer">
            <arg name="service_name" type="s" direction="in" />
            <arg name="server" type="s" direction="out" />
        </method>
        <method name="ListServers">
            <arg name="service_name" type="s" direction="in" />
            <arg name="servers" type="as" direction="out" />
        </method>
    </interface>

    <interface name="org.freedesktop.sssd.DataProvider.AccessControl">
        <annotation value="iface_dp_access_control" name="org.freedesktop.DBus.GLib.CSymbol"/>
        <method name="RefreshRules">
        </method>
    </interface>

    <interface name="org.freedesktop.sssd.dataprovider">
        <annotation value="iface_dp" name="org.freedesktop.DBus.GLib.CSymbol"/>
        <method name="pamHandler">
            <!-- arguments parsed manually, raw handler -->
            <annotation name="org.freedesktop.sssd.RawHandler" value="true"/>
        </method>
        <method name="sudoHandler">
            <!-- arguments parsed manually, raw handler -->
            <annotation name="org.freedesktop.sssd.RawHandler" value="true"/>
        </method>
        <method name="autofsHandler">
            <arg name="dp_flags" type="u" direction="in" />
            <arg name="mapname" type="s" direction="in" />
            <arg name="dp_error" type="q" direction="out" />
            <arg name="error" type="u" direction="out" />
            <arg name="error_message" type="s" direction="out" />
        </method>
        <method name="hostHandler">
            <arg name="dp_flags" type="u" direction="in" />
            <arg name="name" type="s" direction="in" />
            <arg name="alias" type="s" direction="in" />
            <arg name="dp_error" type="q" direction="out" />
            <arg name="error" type="u" direction="out" />
            <arg name="error_message" type="s" direction="out" />
        </method>
        <method name="getDomains">
            <arg name="domain_hint" type="s" direction="in" />
            <arg name="dp_error" type="q" direction="out" />
            <arg name="error" type="u" direction="out" />
            <arg name="error_message" type="s" direction="out" />
        </method>
        <method name="getAccountInfo">
            <arg name="dp_flags" type="u" direction="in" />
            <arg name="entry_type" type="u" direction="in" />
            <arg name="filter" type="s" direction="in" />
            <arg name="domain" type="s" direction="in" />
            <arg name="extra" type="s" direction="in" />
            <arg name="dp_error" type="q" direction="out" />
            <arg name="error" type="u" direction="out" />
            <arg name="error_message" type="s" direction="out" />
        </method>
    </interface>
</node>