Interface JVMMBean
-
- All Superinterfaces:
J2EEManagedObjectMBean
public interface JVMMBean extends J2EEManagedObjectMBean
Identifies a Java VM being utilized by a server. For each Java VM which is running threads associated with the J2EE server, its containers or its resources, there must be one managed object that implements the JVM model. A JVM managed object must be removed when the Java VM it manages is no longer running.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getjavaVendor()
Identifies the Java Runtime Environment vendor of this Java VM.java.lang.String
getjavaVersion()
Identifies the Java Runtime Environment version of this Java VM.java.lang.String
getnode()
Identifies the node (machine) this JVM is running on.-
Methods inherited from interface com.ibm.websphere.management.j2ee.J2EEManagedObjectMBean
getobjectName, iseventProvider, isstateManageable, isstatisticsProvider
-
-
-
-
Method Detail
-
getjavaVersion
java.lang.String getjavaVersion()
Identifies the Java Runtime Environment version of this Java VM. The value of javaVersion must be identical to the value of the system property java.version.
-
getjavaVendor
java.lang.String getjavaVendor()
Identifies the Java Runtime Environment vendor of this Java VM. The value of javaVendor must be identical to the value of the system property java.vendor.
-
getnode
java.lang.String getnode()
Identifies the node (machine) this JVM is running on. The value of the node attribute must be the fully quailified hostname of the node the JVM is running on.
-
-