public class MBeanServerNotificationFilter extends NotificationFilterSupport
MBeanServerNotification
のフィルタです。ObjectNameとオペレーション(登録、登録解除、またはその両方)を選択して、MBeanServerNotification通知をフィルタリングします。
このクラスのserialVersionUIDは2605900539589789736L
です。
コンストラクタと説明 |
---|
MBeanServerNotificationFilter()
すべてのObjectNameに対して、すべてのMBeanServerNotification通知を選択するフィルタを作成します。
|
修飾子と型 | メソッドと説明 |
---|---|
void |
disableAllObjectNames()
すべてのObjectNameの選択を解除して、MBeanServerNotificationを無効にします。
|
void |
disableObjectName(ObjectName objectName)
指定されたObjectNameに関するMBeanServerNotificationを無効にします。
|
void |
enableAllObjectNames()
すべてのObjectNameを選択して、すべてのMBeanServerNotificationを有効にします。
|
void |
enableObjectName(ObjectName objectName)
指定されたObjectNameに関するMBeanServerNotificationを有効にします。
|
Vector<ObjectName> |
getDisabledObjectNames()
無効なすべてのObjectNameを取得します。
|
Vector<ObjectName> |
getEnabledObjectNames()
有効なすべてのObjectNameを取得します。
|
boolean |
isNotificationEnabled(Notification notif)
指定された通知をリスナーに送信する前に呼び出されます。
|
disableAllTypes, disableType, enableType, getEnabledTypes
public MBeanServerNotificationFilter()
public void disableAllObjectNames()
public void disableObjectName(ObjectName objectName) throws IllegalArgumentException
objectName
- 対象外になったObjectNameIllegalArgumentException
- 指定されたObjectNameがnullの場合public void enableAllObjectNames()
public void enableObjectName(ObjectName objectName) throws IllegalArgumentException
objectName
- 対象となるObjectNameIllegalArgumentException
- 指定されたObjectNameがnullの場合public Vector<ObjectName> getEnabledObjectNames()
- nullの場合、明示的に選択解除されたものを除く。すべてのObjectNameが暗黙的に選択される
- 空の場合、すべてのObjectNameの選択が解除される。つまり選択されているObjectNameはなくなる
public Vector<ObjectName> getDisabledObjectNames()
- nullの場合、明示的に選択されたものを除く。すべてのObjectNameが暗黙的に選択解除される
- 空の場合、すべてのObjectNameが選択される。つまり選択解除されているObjectNameはなくなる
public boolean isNotificationEnabled(Notification notif) throws IllegalArgumentException
次の条件が成立する場合:
- 問題のMBeanのObjectNameが選択(明示的に、もしくは暗黙的に(つまり明示的に選択解除されていない))されている場合
かつ
- オペレーション(登録または登録解除)の型が選択されている場合
リスナーに通知が送信されます。
isNotificationEnabled
、インタフェース: NotificationFilter
isNotificationEnabled
、クラス: NotificationFilterSupport
notif
- 送信される通知。IllegalArgumentException
- パラメータがnullの場合 バグまたは機能を送信
詳細なAPIリファレンスおよび開発者ドキュメントについては、Java SEのドキュメントを参照してください。そのドキュメントには、概念的な概要、用語の定義、回避方法、有効なコード例などの、開発者を対象にしたより詳細な説明が含まれています。
Copyright© 1993, 2014, Oracle and/or its affiliates. All rights reserved.