aboutsummaryrefslogtreecommitdiff
path: root/src/krb5-auth-applet-dbus.xml
blob: 0908ec6e4d74d3e8097a7ba28de1b9bea57ec714 (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
<?xml version="1.0" encoding="UTF-8" ?>

<node name="/org/gnome/KrbAuthDialog">
  <interface name="org.gnome.KrbAuthDialog">
    <annotation name="org.freedesktop.DBus.GLib.CSymbol" value="KaApplet"/>
    <method name="acquireTgt">
      <annotation name="org.freedesktop.DBus.GLib.CSymbol" value="ka_dbus_acquire_tgt"/>
      <annotation name="org.freedesktop.DBus.GLib.Async" value="true"/>
      <arg type="s" name="principal" direction="in" />
      <arg type="b" name="success" direction="out"/>
    </method>
    <method name="destroyCCache">
      <annotation name="org.freedesktop.DBus.GLib.CSymbol" value="ka_dbus_destroy_ccache"/>
      <annotation name="org.freedesktop.DBus.GLib.Async" value="true"/>
      <arg type="b" name="success" direction="out"/>
    </method>
    <signal name="krb_tgt_acquired">
       <arg type="s" name="principal" direction ="out"/>
       <arg type="u" name="expiry" direction ="out"/>
    </signal>
    <signal name="krb_tgt_renewed">
       <arg type="s" name="principal" direction ="out"/>
       <arg type="u" name="expiry" direction ="out"/>
    </signal>
    <signal name="krb_tgt_expired">
       <arg type="s" name="principal" direction ="out"/>
       <arg type="u" name="expiry" direction ="out"/>
    </signal>
  </interface>
</node>

bgstack15