org.freedesktop.dbus.DBusCallInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dbus-java-core Show documentation
Show all versions of dbus-java-core Show documentation
Improved version of the DBus-Java library provided by freedesktop.org (https://dbus.freedesktop.org/doc/dbus-java/).
package org.freedesktop.dbus;
import org.freedesktop.dbus.messages.Message;
/**
* Holds information on a method call
*/
public class DBusCallInfo {
/**
* Indicates the caller won't wait for a reply (and we won't send one).
*/
public static final int NO_REPLY = Message.Flags.NO_REPLY_EXPECTED;
public static final int ASYNC = 0x100;
private final String source;
private final String destination;
private final String objectpath;
private final String iface;
private final String method;
private final int flags;
public DBusCallInfo(Message _m) {
source = _m.getSource();
destination = _m.getDestination();
objectpath = _m.getPath();
iface = _m.getInterface();
method = _m.getName();
flags = _m.getFlags();
}
/** Returns the BusID which called the method.
* @return source
*/
public String getSource() {
return source;
}
/** Returns the name with which we were addressed on the Bus.
* @return destination
*/
public String getDestination() {
return destination;
}
/** Returns the object path used to call this method.
* @return objectpath
*/
public String getObjectPath() {
return objectpath;
}
/** Returns the interface this method was called with.
* @return interface
*/
public String getInterface() {
return iface;
}
/** Returns the method name used to call this method.
* @return method
*/
public String getMethod() {
return method;
}
/** Returns any flags set on this method call.
* @return flags
*/
public int getFlags() {
return flags;
}
}