blob: a72ca9281a6db79b5592ea7c264902df4709e5b7 (
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
|
<?xml version="1.0" encoding="UTF-8"?>
<node name="/">
<interface name="com.canonical.StatusNotifierApprover">
<!-- Methods -->
<method name="ApproveItem">
<!-- KSNI ID -->
<arg type="s" name="id" direction="in" />
<!-- KSNI Category -->
<arg type="s" name="category" direction="in" />
<!-- Application PID -->
<arg type="u" name="pid" direction="in" />
<!-- Application DBus Address -->
<arg type="s" name="address" direction="in" />
<!-- Application DBus Path for KSNI interface -->
<arg type="o" name="path" direction="in" />
<!-- So, what do you think? -->
<arg type="b" name="approved" direction="out" />
</method>
<!-- Signals -->
<signal name="ReviseJudgement">
<arg type="b" name="approved" direction="out" />
<arg type="s" name="address" direction="out" />
<arg type="o" name="path" direction="out" />
</signal>
</interface>
</node>
|