public interface ModelMBeanNotificationBroadcaster extends NotificationBroadcaster
管理対象になるJavaリソースは、MBeanServerのcreateMBeanメソッドを使って、ModelMBeanをインスタンス化します。次に、ModelMBeanインスタンスのModelMBeanInfo (Descriptor付き)を設定します。ModelMBeanのModelMBeanInfoで公開された属性とオペレーションには、MBean、コネクタ、アダプタからアクセスできます。ModelMBeanInfo Descriptorを使って、管理対象アプリケーション内の値とメソッドを定義し、ModelMBeanの属性およびオペレーションにマップすることができます。このマッピングは、XML形式のファイルを使った開発時、または実行時にプログラムを使って動的に定義できます。
ModelMBean内でインスタンス化される各ModelMBeanが管理対象になります。これらの属性およびオペレーションには、MBeanServerに接続されたコネクタまたはアダプタ経由でリモート・アクセスできます。JMX準拠のMBeanでないJavaオブジェクトは、MBeanServerに登録できません。リソースは、ModelMBeanをインスタンス化することにより、MBeanの有効性を保証します。
すべてのpublicメソッドで、MBeanExceptionおよびRuntimeOperationsExceptionがスローされる必要があります。こうすることにより、分散型通信(RMI、EJBなど)による例外をラップできます。仕様およびjavadocに記載されているシナリオ以外では、実装が必ずしもこれらの例外をスローするとは限りません。
修飾子と型 | メソッドと説明 |
---|---|
void |
addAttributeChangeNotificationListener(NotificationListener listener, String attributeName, Object handback)
NotificationListenerインタフェースを実装するオブジェクトをリスナーとして登録します。
|
void |
removeAttributeChangeNotificationListener(NotificationListener listener, String attributeName)
RequiredModelMBeanからattributeChangeNotificationのリスナーを削除します。
|
void |
sendAttributeChangeNotification(Attribute oldValue, Attribute newValue)
ModelMBean上の登録済みAttributeChangeNotificationリスナーに、属性の古い値と新しい値を含むattributeChangeNotificationを送信します。
|
void |
sendAttributeChangeNotification(AttributeChangeNotification notification)
ModelMBean上の登録済みattributeChangeNotificationリスナーに渡されるattributeChangeNotificationを送信します。
|
void |
sendNotification(Notification ntfyObj)
ModelMBean上の登録済みNotificationリスナーに、jmx.modelmbean.generic通知として渡されるNotificationを送信します。
|
void |
sendNotification(String ntfyText)
ModelMBean上の登録済みNotificationリスナーに渡されるテキスト文字列を含むNotificationを送信します。
|
addNotificationListener, getNotificationInfo, removeNotificationListener
void sendNotification(Notification ntfyObj) throws MBeanException, RuntimeOperationsException
ntfyObj
- リスナー・オブジェクトのhandleNotificationメソッドに渡される通知。MBeanException
- 分散通信Exceptionをラップする。RuntimeOperationsException
- IllegalArgumentExceptionをラップする場合: パラメータとして渡されたNotificationオブジェクトがnullの場合。void sendNotification(String ntfyText) throws MBeanException, RuntimeOperationsException
ntfyText
- Notificationに指定され、リスナー・オブジェクトのhandleNotificationメソッドに渡されるテキスト。構築されるNotificationを次に示す。type: "jmx.modelmbean.generic"、source: このModelMBeanインスタンス、sequence: 1MBeanException
- 分散通信Exceptionをラップする。RuntimeOperationsException
- IllegalArgumentExceptionをラップする場合: パラメータとして渡されたNotificationテキスト文字列がnullの場合。void sendAttributeChangeNotification(AttributeChangeNotification notification) throws MBeanException, RuntimeOperationsException
notification
- リスナー・オブジェクトのhandleNotificationメソッドに渡される通知。MBeanException
- 分散通信Exceptionをラップする。RuntimeOperationsException
- IllegalArgumentExceptionをラップする場合: パラメータとして渡されたAttributeChangeNotificationオブジェクトがnullの場合。void sendAttributeChangeNotification(Attribute oldValue, Attribute newValue) throws MBeanException, RuntimeOperationsException
oldValue
- Attributeの初期値newValue
- Attributeの現在の値
The constructed attributeChangeNotification will be: type "jmx.attribute.change" source this ModelMBean instance sequence 1 attributeName oldValue.getName() attributeType oldValue's class attributeOldValue oldValue.getValue() attributeNewValue newValue.getValue()
MBeanException
- 分散通信Exceptionをラップする。RuntimeOperationsException
- IllegalArgumentExceptionをラップする場合: パラメータとして渡されるAttributeオブジェクトがnullである場合、またはパラメータに同じ名前のAttributeオブジェクトが複数指定された場合。void addAttributeChangeNotificationListener(NotificationListener listener, String attributeName, Object handback) throws MBeanException, RuntimeOperationsException, IllegalArgumentException
listener
- 登録済みMBeanが発行した通知を処理するリスナー・オブジェクト。attributeName
- ModelMBean属性の名前。この属性の変更通知を受信する。nullの場合、どの属性が変更されたときもattributeChangeNotificationが発行される。handback
- 通知が発行されたとき通知とともにリスナーに送信されるコンテキスト。IllegalArgumentException
- リスナーはnullにできない。MBeanException
- 分散通信Exceptionをラップする。RuntimeOperationsException
- IllegalArgumentExceptionをラップする。パラメータとして渡される属性名が存在しない場合。removeAttributeChangeNotificationListener(javax.management.NotificationListener, java.lang.String)
void removeAttributeChangeNotificationListener(NotificationListener listener, String attributeName) throws MBeanException, RuntimeOperationsException, ListenerNotFoundException
listener
- 登録済みMBeanが発行した通知を処理していたリスナーの名前。このメソッドはこのリスナーに関するすべての情報を削除する。attributeName
- 属性。リスナーは、この属性のattributeChangeNotificationを受信する必要がなくなった。nullの場合、すべてのattributeChangeNotificationのリスナーが削除される。ListenerNotFoundException
- リスナーがMBeanに登録されていないか、nullの場合。MBeanException
- 分散通信Exceptionをラップする。RuntimeOperationsException
- inAttributeNameパラメータが属性名に一致しない場合、IllegalArgumentExceptionをラップする。addAttributeChangeNotificationListener(javax.management.NotificationListener, java.lang.String, java.lang.Object)
バグまたは機能を送信
詳細なAPIリファレンスおよび開発者ドキュメントについては、Java SEのドキュメントを参照してください。そのドキュメントには、概念的な概要、用語の定義、回避方法、有効なコード例などの、開発者を対象にしたより詳細な説明が含まれています。
Copyright© 1993, 2014, Oracle and/or its affiliates. All rights reserved.