public interface VersionMBean
This interface defines a Standard MBean for exposing the version information
 of a running Derby component.
 
 Refer to the getters of the interface for defined attributes. All attributes
 are read-only.
 The MBean does not define any operations.
 
Key properties for registered MBean:
-  type=Version
-  jar={derby.jar|derbynet.jar}
-  system=runtime system identifier (see overview)
If a security manager is installed these permissions are required:
-  SystemPermission("server", "monitor")for version information specific to derbynet.jar
-  SystemPermission("engine", "monitor")for version information specific to derby.jar
- 
Method Details- 
getProductNameString getProductName()
- 
getProductTechnologyNameString getProductTechnologyName()
- 
getProductVendorNameString getProductVendorName()
- 
getMajorVersionint getMajorVersion()
- 
getMinorVersionint getMinorVersion()
- 
getMaintenanceVersionint getMaintenanceVersion()
- 
getVersionStringString getVersionString()Return the full version string.- Returns:
- Full version string.
 
- 
getBuildNumberString getBuildNumber()
- 
isBetaboolean isBeta()
- 
isAlphaboolean isAlpha()
 
-