Package org.freedesktop.dbus
Class DBusCallInfo
- java.lang.Object
-
- org.freedesktop.dbus.DBusCallInfo
-
public class DBusCallInfo extends java.lang.ObjectHolds information on a method call
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetDestination()Returns the name with which we were addressed on the BusintgetFlags()Returns any flags set on this method calljava.lang.StringgetInterface()Returns the interface this method was called withjava.lang.StringgetMethod()Returns the method name used to call this methodjava.lang.StringgetObjectPath()Returns the object path used to call this methodjava.lang.StringgetSource()Returns the BusID which called the method
-
-
-
Field Detail
-
NO_REPLY
public static final int NO_REPLY
Indicates the caller won't wait for a reply (and we won't send one).- See Also:
- Constant Field Values
-
ASYNC
public static final int ASYNC
- See Also:
- Constant Field Values
-
-
Method Detail
-
getSource
public java.lang.String getSource()
Returns the BusID which called the method
-
getDestination
public java.lang.String getDestination()
Returns the name with which we were addressed on the Bus
-
getObjectPath
public java.lang.String getObjectPath()
Returns the object path used to call this method
-
getInterface
public java.lang.String getInterface()
Returns the interface this method was called with
-
getMethod
public java.lang.String getMethod()
Returns the method name used to call this method
-
getFlags
public int getFlags()
Returns any flags set on this method call
-
-