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
|
<?xml version="1.0" encoding="UTF-8"?>
<node>
<interface name="org.group.admin">
<method name="ListCachedGroups">
<arg name="groups" direction="out" type="ao">
</arg>
</method>
<method name="FindGroupById">
<arg name="id" direction="in" type="x">
</arg>
<arg name="group" direction="out" type="o">
</arg>
</method>
<method name="FindGroupByName">
<arg name="name" direction="in" type="s">
</arg>
<arg name="group" direction="out" type="o">
</arg>
</method>
<method name="CreateGroup">
<arg name="name" direction="in" type="s">
</arg>
<arg name="group" direction="out" type="o">
</arg>
</method>
<method name="DeleteGroup">
<arg name="id" direction="in" type="x">
</arg>
</method>
<property name="DaemonVersion" type="s" access="read">
</property>
<signal name="GroupAdded">
<arg name="user" type="o">
</arg>
</signal>
<signal name="GroupDeleted">
<arg name="user" type="o">
</arg>
</signal>
</interface>
</node>
|