Package de.xima.fc.ms.monitoring
Interface FCVersionInfoMBean
-
- All Known Implementing Classes:
FCVersionInfo
public interface FCVersionInfoMBean
Monitoring bean interface for obtaining information regarding the current formcycle version.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Date
getbuild_date()
Gets the date when the current formcycle instance was built.String
getversion_name()
Gets the code name of the current formcycle instance.String
getversion_number()
Gets the version number of the current formcycle instance.
-
-
-
Method Detail
-
getbuild_date
Date getbuild_date()
Gets the date when the current formcycle instance was built. For production releases, this is the time when the version was built, which may be slightly earlier that the date the version was released.- Returns:
- The build date of the current formcycle instance.
-
getversion_name
String getversion_name()
Gets the code name of the current formcycle instance. This is usually a code name for the release, such asdespina
orlarissa
.- Returns:
- The code name of the current formcycle instance.
-
getversion_number
String getversion_number()
Gets the version number of the current formcycle instance. This is usually a valid semantic version number, but could be any string e.g. in test environments. For production environments, this is most likely a semantic version without any pre-release or build metadata, such as1.2.3
.- Returns:
- The version number of the current formcycle instance.
-
-