Interface J2EEServerMBean
-
- All Superinterfaces:
J2EEManagedObjectMBean
public interface J2EEServerMBean extends J2EEManagedObjectMBean
The J2EEServer model specifies the management information for a single J2EE server core implementation. The J2EE server core identifies the server core of one instance of a J2EE platform product as described in the Java 2 Enterprise Edition Platform specification section 2.1, Architecture.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String[]
getdeployedObjects()
A list of all of the J2EEApplication and J2EEModule types deployed on this J2EEServer.java.lang.String[]
getjavaVMs()
A list of all Java virtual machines on which this J2EEServer has running threads.java.lang.String[]
getresources()
A list of resources available to this server.java.lang.String
getserverVendor()
Identifies the J2EE platform vendor of this J2EEServer.java.lang.String
getserverVersion()
Identifies the J2EE implemetation version of this J2EEServer.-
Methods inherited from interface com.ibm.websphere.management.j2ee.J2EEManagedObjectMBean
getobjectName, iseventProvider, isstateManageable, isstatisticsProvider
-
-
-
-
Method Detail
-
getdeployedObjects
java.lang.String[] getdeployedObjects()
A list of all of the J2EEApplication and J2EEModule types deployed on this J2EEServer.
-
getresources
java.lang.String[] getresources()
A list of resources available to this server.
-
getjavaVMs
java.lang.String[] getjavaVMs()
A list of all Java virtual machines on which this J2EEServer has running threads. For each Java virtual machine this server utilizes, there must be one JVM OBJECT_NAME in the javaVMs list that identifies it.
-
getserverVendor
java.lang.String getserverVendor()
Identifies the J2EE platform vendor of this J2EEServer. The value of serverVendor is specified by the server vendor.
-
getserverVersion
java.lang.String getserverVersion()
Identifies the J2EE implemetation version of this J2EEServer. The value of serverVersion is specified by the server vendor.
-
-