Package patterntesting.runtime.jmx
Interface InfoMBean
-
- All Known Implementing Classes:
Info
public interface InfoMBean
This is the interface for the info bean anf for the use of this bean as MBean. This allows you to access the infos e.g. with the 'jconsole' during runtime.- Since:
- 1.4.1 (06.04.2014)
- Author:
- oliver (boehm@javatux.de)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Date
getBuildTime()
Gets the builds the time of PatternTesting.java.net.URI
getManifestURI()
Gets the manifest URI.java.lang.String
getVersion()
Gets the version of PatternTesting.
-
-
-
Method Detail
-
getVersion
@Description("returns the version of PatternTesting") java.lang.String getVersion()
Gets the version of PatternTesting.- Returns:
- the version (e.g. "1.4.1")
-
getBuildTime
@Description("returns the build time of PatternTesting") java.util.Date getBuildTime()
Gets the builds the time of PatternTesting.- Returns:
- the builds the time
-
getManifestURI
@Description("return the URI of the Manifest") java.net.URI getManifestURI()
Gets the manifest URI.- Returns:
- the manifest URI
-
-