Package de.xima.fc.manager
Class SystemStatusManager
- java.lang.Object
-
- de.xima.fc.manager.SystemStatusManager
-
public class SystemStatusManager extends Object
- Author:
- XIMA MEDIA GmbH
-
-
Constructor Summary
Constructors Constructor Description SystemStatusManager()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static void
init(ISystemStatusChecker statusChecker)
Initializes the system status checker with the given implementation.static boolean
isDatabaseRunning()
static boolean
isFormModuleRunning()
static boolean
isManagementModuleRunning()
static boolean
isSystemUpToDate()
-
-
-
Method Detail
-
init
public static void init(ISystemStatusChecker statusChecker)
Initializes the system status checker with the given implementation.- Parameters:
statusChecker
- Status checker to which to delegate.
-
isFormModuleRunning
public static boolean isFormModuleRunning()
- Returns:
true
if the form module is running andfalse
otherwise.- See Also:
ISystemStatusChecker.isFormModuleRunning()
-
isManagementModuleRunning
public static boolean isManagementModuleRunning()
- Returns:
true
if the management module is running andfalse
otherwise.- See Also:
ISystemStatusChecker.isManagementModuleRunning()
-
isDatabaseRunning
public static boolean isDatabaseRunning()
- Returns:
true
if a connection to the system database exists,false
otherwise.- Since:
- 8.0.0
- See Also:
ISystemStatusChecker.isDatabaseRunning()
-
isSystemUpToDate
public static boolean isSystemUpToDate()
- Returns:
true
if the system is up to date andfalse
otherwise.- Since:
- 8.0.0
- See Also:
ISystemStatusChecker.isSystemUpToDate()
-
-