aboutsummaryrefslogtreecommitdiff
path: root/src/users-service.xml
diff options
context:
space:
mode:
authorCody Russell <crussell@canonical.com>2009-09-10 16:26:01 -0500
committerCody Russell <crussell@canonical.com>2009-09-10 16:26:01 -0500
commitefd24605727ee979b35053397463246456cf0ed0 (patch)
tree621f85a05dc90b0fe0a519108ba2b8d18897c494 /src/users-service.xml
parent3211a5e810fbbe830a237127092d221018f4f6a2 (diff)
downloadayatana-indicator-session-efd24605727ee979b35053397463246456cf0ed0.tar.gz
ayatana-indicator-session-efd24605727ee979b35053397463246456cf0ed0.tar.bz2
ayatana-indicator-session-efd24605727ee979b35053397463246456cf0ed0.zip
work in progress
Diffstat (limited to 'src/users-service.xml')
-rw-r--r--src/users-service.xml56
1 files changed, 56 insertions, 0 deletions
diff --git a/src/users-service.xml b/src/users-service.xml
new file mode 100644
index 0000000..9eccf5d
--- /dev/null
+++ b/src/users-service.xml
@@ -0,0 +1,56 @@
+<!DOCTYPE node PUBLIC "-//freedesktop//DTD D-BUS Object Introspection 1.0//EN" "http://www.freedesktop.org/standards/dbus/1.0/introspect.dtd">
+<node name="/org/gnome/DisplayManager/UserManager">
+ <interface name="org.gnome.DisplayManager.UserManager">
+
+ <!-- Get the number of known users -->
+ <method name="CountUsers">
+ <arg name="user_count" direction="out" type="i"/>
+ </method>
+
+ <!-- Get the list of known UIDs -->
+ <method name="GetUserList">
+ <arg name="uids" direction="out" type="ax"/>
+ </method>
+
+ <!-- Get user info for a user -->
+ <method name="GetUserInfo">
+ <arg name="uid" direction="in" type="x"/>
+ <arg name="user_name" direction="out" type="s"/>
+ <arg name="real_name" direction="out" type="s"/>
+ <arg name="shell" direction="out" type="s"/>
+ <arg name="icon_url" direction="out" type="s"/>
+ </method>
+
+ <!-- Get user info for a list of users -->
+ <method name="GetUsersInfo">
+ <arg name="uid" direction="in" type="ax"/>
+ <!-- (uid, user_name, real_name, shell, icon_url) -->
+ <arg name="user_info" direction="out" type="a(xssss)"/>
+ </method>
+
+ <!-- Triggered when user information is being reloaded.
+ All existing user information is invalid from this signal.
+ Wait for the UsersLoaded signal -->
+ <signal name="LoadingUsers"></signal>
+
+ <!-- Triggered when user information has been reloaded.
+ A client should call GetUserList() now -->
+ <signal name="UsersLoaded"></signal>
+
+ <!-- Triggered when a user has updated information -->
+ <signal name="UserUpdated">
+ <arg name="uid" type="x"/>
+ </signal>
+
+ <!-- Triggered when a users are added to/removed from the system.
+ Clients should monitor these signals as soon as they connect to
+ this object -->
+ <signal name="UserAdded">
+ <arg name="uid" type="x"/>
+ </signal>
+ <signal name="UserRemoved">
+ <arg name="uid" type="x"/>
+ </signal>
+
+ </interface>
+</node>