パッケージ | 説明 |
---|---|
javax.management |
Java Management Extensionsのコア・クラスを提供します。
|
javax.management.modelmbean |
ModelMBeanクラスの定義を提供します。
|
javax.management.remote.rmi |
RMIコネクタは、RMIを使ってクライアント要求をリモートMBeanサーバーへ転送する、JMXリモートAPI用のコネクタです。
|
修飾子と型 | クラスと説明 |
---|---|
class |
MBeanRegistrationException
MBeanRegistration インタフェースのpreRegister()メソッドとpreDeregister()メソッドによってスローされる例外をラップします。 |
修飾子と型 | メソッドと説明 |
---|---|
ObjectInstance |
MBeanServer.createMBean(String className, ObjectName name)
MBeanをインスタンス化し、MBeanサーバーに登録します。
|
ObjectInstance |
MBeanServerConnection.createMBean(String className, ObjectName name)
MBeanをインスタンス化し、MBeanサーバーに登録します。
|
ObjectInstance |
MBeanServer.createMBean(String className, ObjectName name, Object[] params, String[] signature)
MBeanをインスタンス化し、MBeanサーバーに登録します。
|
ObjectInstance |
MBeanServerConnection.createMBean(String className, ObjectName name, Object[] params, String[] signature)
MBeanをインスタンス化し、MBeanサーバーに登録します。
|
ObjectInstance |
MBeanServer.createMBean(String className, ObjectName name, ObjectName loaderName)
MBeanをインスタンス化し、MBeanサーバーに登録します。
|
ObjectInstance |
MBeanServerConnection.createMBean(String className, ObjectName name, ObjectName loaderName)
MBeanをインスタンス化し、MBeanサーバーに登録します。
|
ObjectInstance |
MBeanServer.createMBean(String className, ObjectName name, ObjectName loaderName, Object[] params, String[] signature)
MBeanをインスタンス化し、MBeanサーバーに登録します。
|
ObjectInstance |
MBeanServerConnection.createMBean(String className, ObjectName name, ObjectName loaderName, Object[] params, String[] signature)
MBeanをインスタンス化し、MBeanサーバーに登録します。
|
Object |
MBeanServer.getAttribute(ObjectName name, String attribute) |
Object |
MBeanServerConnection.getAttribute(ObjectName name, String attribute)
指定されたMBeanの特定の属性の値を取得します。
|
Object |
StandardMBean.getAttribute(String attribute) |
Object |
DynamicMBean.getAttribute(String attribute)
Dynamic MBeanの特定の属性の値を取得します。
|
Object |
MBeanServer.instantiate(String className)
MBeanサーバーの
Class Loader Repository 内に登録されたすべてのクラス・ローダーのリストを使って、オブジェクトをインスタンス化します。 |
Object |
MBeanServer.instantiate(String className, Object[] params, String[] signature)
MBeanサーバーの
Class Loader Repository 内に登録されたすべてのクラス・ローダーのリストを使って、オブジェクトをインスタンス化します。 |
Object |
MBeanServer.instantiate(String className, ObjectName loaderName)
ObjectName で指定されたクラス・ローダーを使って、オブジェクトをインスタンス化します。 |
Object |
MBeanServer.instantiate(String className, ObjectName loaderName, Object[] params, String[] signature)
オブジェクトをインスタンス化します。
|
Object |
MBeanServer.invoke(ObjectName name, String operationName, Object[] params, String[] signature) |
Object |
MBeanServerConnection.invoke(ObjectName name, String operationName, Object[] params, String[] signature)
MBean上でオペレーションを呼び出します。
|
Object |
StandardMBean.invoke(String actionName, Object[] params, String[] signature) |
Object |
DynamicMBean.invoke(String actionName, Object[] params, String[] signature)
Dynamic MBean上でのアクションの呼出しを許可します。
|
void |
PersistentMBean.load()
thisMBeanインスタンスを永続ストア内のMBean用データでインスタンス化します。
|
void |
StandardMBean.setAttribute(Attribute attribute) |
void |
DynamicMBean.setAttribute(Attribute attribute)
Dynamic MBeanの特定の属性の値を設定します。
|
void |
MBeanServer.setAttribute(ObjectName name, Attribute attribute) |
void |
MBeanServerConnection.setAttribute(ObjectName name, Attribute attribute)
指定されたMBeanの特定の属性の値を設定します。
|
void |
PersistentMBean.store()
このMBeanインスタンスの現在の状態を取り込み、永続ストアに書き出します。
|
修飾子と型 | メソッドと説明 |
---|---|
void |
RequiredModelMBean.addAttributeChangeNotificationListener(NotificationListener inlistener, String inAttributeName, Object inhandback) |
void |
ModelMBeanNotificationBroadcaster.addAttributeChangeNotificationListener(NotificationListener listener, String attributeName, Object handback)
NotificationListenerインタフェースを実装するオブジェクトをリスナーとして登録します。
|
ModelMBeanAttributeInfo |
ModelMBeanInfoSupport.getAttribute(String inName) |
ModelMBeanAttributeInfo |
ModelMBeanInfo.getAttribute(String inName)
名前で要求されたModelMBeanAttributeInfoを返します。
|
Object |
RequiredModelMBean.getAttribute(String attrName)
このModelMBeanに定義された特定の属性の値を返します。
|
ModelMBeanConstructorInfo |
ModelMBeanInfoSupport.getConstructor(String inName)
名前で要求されたModelMBeanConstructorInfoを返します。
|
Descriptor |
ModelMBeanInfoSupport.getDescriptor(String inDescriptorName)
名前で要求されたDescriptorを返します。
|
Descriptor |
ModelMBeanInfoSupport.getDescriptor(String inDescriptorName, String inDescriptorType) |
Descriptor |
ModelMBeanInfo.getDescriptor(String inDescriptorName, String inDescriptorType)
名前とdescriptorTypeで要求されたDescriptorを返します。
|
Descriptor[] |
ModelMBeanInfoSupport.getDescriptors(String inDescriptorType) |
Descriptor[] |
ModelMBeanInfo.getDescriptors(String inDescriptorType)
inDescriptorType型のModelMBeanInfoのすべてのDescriptorで構成されるDescriptor配列を返します。
|
Descriptor |
ModelMBeanInfoSupport.getMBeanDescriptor() |
Descriptor |
ModelMBeanInfo.getMBeanDescriptor()
MBean全体ポリシーを含むModelMBeanの記述子を返します。
|
ModelMBeanNotificationInfo |
ModelMBeanInfoSupport.getNotification(String inName) |
ModelMBeanNotificationInfo |
ModelMBeanInfo.getNotification(String inName)
名前で要求されたModelMBeanNotificationInfoを返します。
|
ModelMBeanOperationInfo |
ModelMBeanInfoSupport.getOperation(String inName) |
ModelMBeanOperationInfo |
ModelMBeanInfo.getOperation(String inName)
名前で要求されたModelMBeanOperationInfoを返します。
|
Object |
RequiredModelMBean.invoke(String opName, Object[] opArgs, String[] sig)
RequiredModelMBean上または経由でメソッドを呼び出し、その実行結果を返します。
|
void |
RequiredModelMBean.load()
このMBeanインスタンスを、永続ストアで見つかるMBean用のデータでインスタンス化します。
|
void |
RequiredModelMBean.removeAttributeChangeNotificationListener(NotificationListener inlistener, String inAttributeName) |
void |
ModelMBeanNotificationBroadcaster.removeAttributeChangeNotificationListener(NotificationListener listener, String attributeName)
RequiredModelMBeanからattributeChangeNotificationのリスナーを削除します。
|
void |
RequiredModelMBean.sendAttributeChangeNotification(Attribute inOldVal, Attribute inNewVal) |
void |
ModelMBeanNotificationBroadcaster.sendAttributeChangeNotification(Attribute oldValue, Attribute newValue)
ModelMBean上の登録済みAttributeChangeNotificationリスナーに、属性の古い値と新しい値を含むattributeChangeNotificationを送信します。
|
void |
RequiredModelMBean.sendAttributeChangeNotification(AttributeChangeNotification ntfyObj) |
void |
ModelMBeanNotificationBroadcaster.sendAttributeChangeNotification(AttributeChangeNotification notification)
ModelMBean上の登録済みattributeChangeNotificationリスナーに渡されるattributeChangeNotificationを送信します。
|
void |
RequiredModelMBean.sendNotification(Notification ntfyObj) |
void |
ModelMBeanNotificationBroadcaster.sendNotification(Notification ntfyObj)
ModelMBean上の登録済みNotificationリスナーに、jmx.modelmbean.generic通知として渡されるNotificationを送信します。
|
void |
RequiredModelMBean.sendNotification(String ntfyText) |
void |
ModelMBeanNotificationBroadcaster.sendNotification(String ntfyText)
ModelMBean上の登録済みNotificationリスナーに渡されるテキスト文字列を含むNotificationを送信します。
|
void |
RequiredModelMBean.setAttribute(Attribute attribute)
指定されたModelMBeanの特定の属性の値を設定します。
|
void |
ModelMBeanInfoSupport.setDescriptor(Descriptor inDescriptor, String inDescriptorType) |
void |
ModelMBeanInfo.setDescriptor(Descriptor inDescriptor, String inDescriptorType)
ModelMBeanのinDescriptorType型の情報配列内に記述子を設定します。
|
void |
ModelMBeanInfoSupport.setDescriptors(Descriptor[] inDescriptors) |
void |
ModelMBeanInfo.setDescriptors(Descriptor[] inDescriptors)
ModelMBeanInfoに記述子を追加するか、ModelMBeanInfo内の記述子を置き換えます。
|
void |
ModelMBean.setManagedResource(Object mr, String mr_type)
このModelMBean管理インタフェース(MBeanInfoとDescriptor)内のすべてのメソッドの実行先オブジェクトのインスタンス・ハンドルを設定します。
|
void |
RequiredModelMBean.setManagedResource(Object mr, String mr_type)
このModelMBean管理インタフェース(MBeanInfoとDescriptor)内のすべてのメソッドの実行先オブジェクトのインスタンス・ハンドルを設定します。
|
void |
ModelMBeanInfoSupport.setMBeanDescriptor(Descriptor inMBeanDescriptor) |
void |
ModelMBeanInfo.setMBeanDescriptor(Descriptor inDescriptor)
ModelMBeanの記述子を設定します。
|
void |
ModelMBean.setModelMBeanInfo(ModelMBeanInfo inModelMBeanInfo)
渡されたModelMBeanInfoを使ってModelMBeanオブジェクトを初期化します。
|
void |
RequiredModelMBean.setModelMBeanInfo(ModelMBeanInfo mbi)
渡されたModelMBeanInfoを使ってModelMBeanオブジェクトを初期化します。
|
void |
RequiredModelMBean.store()
このMBeanインスタンスの現在の状態を取り込み、永続ストアに書き出します。
|
コンストラクタと説明 |
---|
DescriptorSupport(int initNumFields)
記述子のコンストラクタです。
|
DescriptorSupport(String inStr)
XML Stringを取る記述子のコンストラクタです。
|
RequiredModelMBean()
空のModelMBeanInfoで
RequiredModelMBean を構築します。 |
RequiredModelMBean(ModelMBeanInfo mbi)
渡されたModelMBeanInfoを使ってRequiredModelMBeanオブジェクトを構築します。
|
修飾子と型 | メソッドと説明 |
---|---|
ObjectInstance |
RMIConnectionImpl.createMBean(String className, ObjectName name, MarshalledObject params, String[] signature, Subject delegationSubject) |
ObjectInstance |
RMIConnection.createMBean(String className, ObjectName name, MarshalledObject params, String[] signature, Subject delegationSubject)
|
ObjectInstance |
RMIConnectionImpl_Stub.createMBean(String $param_String_1, ObjectName $param_ObjectName_2, MarshalledObject $param_MarshalledObject_3, String[] $param_arrayOf_String_4, Subject $param_Subject_5) |
ObjectInstance |
RMIConnectionImpl.createMBean(String className, ObjectName name, ObjectName loaderName, MarshalledObject params, String[] signature, Subject delegationSubject) |
ObjectInstance |
RMIConnection.createMBean(String className, ObjectName name, ObjectName loaderName, MarshalledObject params, String[] signature, Subject delegationSubject)
|
ObjectInstance |
RMIConnectionImpl_Stub.createMBean(String $param_String_1, ObjectName $param_ObjectName_2, ObjectName $param_ObjectName_3, MarshalledObject $param_MarshalledObject_4, String[] $param_arrayOf_String_5, Subject $param_Subject_6) |
ObjectInstance |
RMIConnectionImpl.createMBean(String className, ObjectName name, ObjectName loaderName, Subject delegationSubject) |
ObjectInstance |
RMIConnection.createMBean(String className, ObjectName name, ObjectName loaderName, Subject delegationSubject)
|
ObjectInstance |
RMIConnectionImpl_Stub.createMBean(String $param_String_1, ObjectName $param_ObjectName_2, ObjectName $param_ObjectName_3, Subject $param_Subject_4) |
ObjectInstance |
RMIConnectionImpl.createMBean(String className, ObjectName name, Subject delegationSubject) |
ObjectInstance |
RMIConnection.createMBean(String className, ObjectName name, Subject delegationSubject)
|
ObjectInstance |
RMIConnectionImpl_Stub.createMBean(String $param_String_1, ObjectName $param_ObjectName_2, Subject $param_Subject_3) |
Object |
RMIConnectionImpl.getAttribute(ObjectName name, String attribute, Subject delegationSubject) |
Object |
RMIConnection.getAttribute(ObjectName name, String attribute, Subject delegationSubject)
|
Object |
RMIConnectionImpl_Stub.getAttribute(ObjectName $param_ObjectName_1, String $param_String_2, Subject $param_Subject_3) |
Object |
RMIConnectionImpl.invoke(ObjectName name, String operationName, MarshalledObject params, String[] signature, Subject delegationSubject) |
Object |
RMIConnection.invoke(ObjectName name, String operationName, MarshalledObject params, String[] signature, Subject delegationSubject)
|
Object |
RMIConnectionImpl_Stub.invoke(ObjectName $param_ObjectName_1, String $param_String_2, MarshalledObject $param_MarshalledObject_3, String[] $param_arrayOf_String_4, Subject $param_Subject_5) |
void |
RMIConnectionImpl.setAttribute(ObjectName name, MarshalledObject attribute, Subject delegationSubject) |
void |
RMIConnection.setAttribute(ObjectName name, MarshalledObject attribute, Subject delegationSubject)
|
void |
RMIConnectionImpl_Stub.setAttribute(ObjectName $param_ObjectName_1, MarshalledObject $param_MarshalledObject_2, Subject $param_Subject_3) |
バグまたは機能を送信
詳細なAPIリファレンスおよび開発者ドキュメントについては、Java SEのドキュメントを参照してください。そのドキュメントには、概念的な概要、用語の定義、回避方法、有効なコード例などの、開発者を対象にしたより詳細な説明が含まれています。
Copyright© 1993, 2014, Oracle and/or its affiliates. All rights reserved.