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 SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetjavaVendor()Identifies the Java Runtime Environment vendor of this Java VM.java.lang.StringgetjavaVersion()Identifies the Java Runtime Environment version of this Java VM.java.lang.Stringgetnode()Identifies the node (machine) this JVM is running on.- 
Methods inherited from interface com.ibm.websphere.management.j2ee.J2EEManagedObjectMBeangetobjectName, iseventProvider, isstateManageable, isstatisticsProvider
 
- 
 
- 
- 
- 
Method Detail- 
getjavaVersionjava.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.
 - 
getjavaVendorjava.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.
 - 
getnodejava.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.
 
- 
 
-