keycloak-federation
公開メンバ関数 | 静的公開変数類 | 関数 | 非公開変数類 | 全メンバ一覧
org.freedesktop.dbus.DBusCallInfo クラス
org.freedesktop.dbus.DBusCallInfo 連携図
Collaboration graph

公開メンバ関数

String getSource ()
 
String getDestination ()
 
String getObjectPath ()
 
String getInterface ()
 
String getMethod ()
 
int getFlags ()
 

静的公開変数類

static final int NO_REPLY = Message.Flags.NO_REPLY_EXPECTED
 
static final int ASYNC = 0x100
 

関数

 DBusCallInfo (Message m)
 

非公開変数類

String source
 
String destination
 
String objectpath
 
String iface
 
String method
 
int flags
 

詳解

Holds information on a method call

構築子と解体子

◆ DBusCallInfo()

org.freedesktop.dbus.DBusCallInfo.DBusCallInfo ( Message  m)
inlinepackage
29  {
30  this.source = m.getSource();
31  this.destination = m.getDestination();
32  this.objectpath = m.getPath();
33  this.iface = m.getInterface();
34  this.method = m.getName();
35  this.flags = m.getFlags();
36  }
int flags
Definition: DBusCallInfo.java:27
String destination
Definition: DBusCallInfo.java:23
String method
Definition: DBusCallInfo.java:26
String iface
Definition: DBusCallInfo.java:25
String source
Definition: DBusCallInfo.java:22
String objectpath
Definition: DBusCallInfo.java:24

関数詳解

◆ getDestination()

String org.freedesktop.dbus.DBusCallInfo.getDestination ( )
inline

Returns the name with which we were addressed on the Bus

48  {
49  return destination;
50  }
String destination
Definition: DBusCallInfo.java:23

◆ getFlags()

int org.freedesktop.dbus.DBusCallInfo.getFlags ( )
inline

Returns any flags set on this method call

76  {
77  return flags;
78  }
int flags
Definition: DBusCallInfo.java:27

◆ getInterface()

String org.freedesktop.dbus.DBusCallInfo.getInterface ( )
inline

Returns the interface this method was called with

62  {
63  return iface;
64  }
String iface
Definition: DBusCallInfo.java:25

◆ getMethod()

String org.freedesktop.dbus.DBusCallInfo.getMethod ( )
inline

Returns the method name used to call this method

69  {
70  return method;
71  }
String method
Definition: DBusCallInfo.java:26

◆ getObjectPath()

String org.freedesktop.dbus.DBusCallInfo.getObjectPath ( )
inline

Returns the object path used to call this method

55  {
56  return objectpath;
57  }
String objectpath
Definition: DBusCallInfo.java:24

◆ getSource()

String org.freedesktop.dbus.DBusCallInfo.getSource ( )
inline

Returns the BusID which called the method

41  {
42  return source;
43  }
String source
Definition: DBusCallInfo.java:22

メンバ詳解

◆ ASYNC

final int org.freedesktop.dbus.DBusCallInfo.ASYNC = 0x100
static

◆ destination

String org.freedesktop.dbus.DBusCallInfo.destination
private

◆ flags

int org.freedesktop.dbus.DBusCallInfo.flags
private

◆ iface

String org.freedesktop.dbus.DBusCallInfo.iface
private

◆ method

String org.freedesktop.dbus.DBusCallInfo.method
private

◆ NO_REPLY

final int org.freedesktop.dbus.DBusCallInfo.NO_REPLY = Message.Flags.NO_REPLY_EXPECTED
static

Indicates the caller won't wait for a reply (and we won't send one).

◆ objectpath

String org.freedesktop.dbus.DBusCallInfo.objectpath
private

◆ source

String org.freedesktop.dbus.DBusCallInfo.source
private

このクラス詳解は次のファイルから抽出されました: