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
|
<!DOCTYPE node
PUBLIC "-//freedesktop//DTD D-BUS Object Introspection 1.0//EN"
"http://www.freedesktop.org/standards/dbus/1.0/introspect.dtd">
<node>
<interface name="com.redhat.oddjob.test">
<method name="sanity1">
<arg direction="in" type="s"/>
<arg direction="out" name="exit_status" type="i"/>
<arg direction="out" name="stdout" type="s"/>
<arg direction="out" name="stderr" type="s"/>
</method>
<method name="sanity2">
<arg direction="in" type="s"/>
<arg direction="out" name="exit_status" type="i"/>
<arg direction="out" name="stdout" type="s"/>
<arg direction="out" name="stderr" type="s"/>
</method>
<method name="printenv">
<arg direction="out" name="exit_status" type="i"/>
<arg direction="out" name="stdout" type="s"/>
<arg direction="out" name="stderr" type="s"/>
</method>
<method name="exit1">
<arg direction="out" name="exit_status" type="i"/>
<arg direction="out" name="stdout" type="s"/>
<arg direction="out" name="stderr" type="s"/>
</method>
<method name="sigint">
<arg direction="out" name="exit_status" type="i"/>
<arg direction="out" name="stdout" type="s"/>
<arg direction="out" name="stderr" type="s"/>
</method>
<method name="sleep30">
<arg direction="out" name="exit_status" type="i"/>
<arg direction="out" name="stdout" type="s"/>
<arg direction="out" name="stderr" type="s"/>
</method>
<method name="eightx">
<arg direction="out" name="exit_status" type="i"/>
<arg direction="out" name="stdout" type="s"/>
<arg direction="out" name="stderr" type="s"/>
</method>
<method name="ninex">
<arg direction="out" name="exit_status" type="i"/>
<arg direction="out" name="stdout" type="s"/>
<arg direction="out" name="stderr" type="s"/>
</method>
<method name="twelvex">
<arg direction="out" name="exit_status" type="i"/>
<arg direction="out" name="stdout" type="s"/>
<arg direction="out" name="stderr" type="s"/>
</method>
<method name="eighteenx">
<arg direction="out" name="exit_status" type="i"/>
<arg direction="out" name="stdout" type="s"/>
<arg direction="out" name="stderr" type="s"/>
</method>
</interface>
<interface name="org.freedesktop.DBus.Introspectable">
<method name="Introspect">
<arg direction="out" name="data" type="s"/>
</method>
</interface>
</node>
|