File: org.group.admin.xml

package info (click to toggle)
group-service 1.4.0-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 372 kB
  • sloc: ansic: 3,152; xml: 70; makefile: 8
file content (50 lines) | stat: -rw-r--r-- 1,114 bytes parent folder | download | duplicates (3)
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>