summaryrefslogtreecommitdiff
path: root/plugins/identity/org.gnome.Identity.xml
blob: 0bf63947efdf83395801ba71923fbcc020f4c246 (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
<!DOCTYPE node PUBLIC
"-//freedesktop//DTD D-BUS Object Introspection 1.0//EN"
"http://www.freedesktop.org/standards/dbus/1.0/introspect.dtd">

<!--
 Copyright (C) 2012 Red Hat, Inc.

 This library is free software; you can redistribute it and/or
 modify it under the terms of the GNU Lesser General Public
 License as published by the Free Software Foundation; either
 version 2 of the License, or (at your option) any later version.

 This library is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 Lesser General Public License for more details.

 You should have received a copy of the GNU Lesser General
 Public License along with this library; if not, write to the
 Free Software Foundation, Inc., 59 Temple Place, Suite 330,
 Boston, MA 02111-1307, USA.

 Author: Ray Strode <rstrode@redhat.com>
-->

<node name="/" xmlns:doc="http://www.freedesktop.org/dbus/1.0/doc.dtd">
  <!--
      org.gnome.Identity.Manager:

      An interface used for managing identities.
  -->
  <interface name="org.gnome.Identity.Manager">

    <!--
        SignIn:
        @identity: The identifier of the identity (i.e., a kerberos principal name)
        @details: Extra key/value pairs to set.
        @identity_object_path: The object path of the signed in identity.

        Signs in an identity.
    -->
    <method name="SignIn">
      <arg name="identity" type="s" direction="in"/>
      <arg name="details" type="a{ss}" direction="in"/>
      <arg name="identity_object_path" type="o" direction="out"/>
    </method>

    <method name="SignOut">
      <arg name="identity" type="s" direction="in"/>
    </method>
  </interface>

  <!--
      org.gnome.Identity:

      The identity interface.
  -->
  <interface name="org.gnome.Identity">
    <!--
        Identifier:
        Unique string identifying identity (i.e., a kerberos principal name)
    -->
    <property name="Identifier" type="s" access="read"/>

    <!--
        ExpirationTimestamp:
        The time the identity's credentials will expire
    -->
    <property name="ExpirationTimestamp" type="x" access="read"/>

  </interface>

</node>