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 voidinit(ISystemStatusChecker statusChecker)Initializes the system status checker with the given implementation.static booleanisDatabaseRunning()static booleanisFormModuleRunning()static booleanisManagementModuleRunning()static booleanisSystemUpToDate() 
 - 
 
- 
- 
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:
 trueif the form module is running andfalseotherwise.- See Also:
 ISystemStatusChecker.isFormModuleRunning()
 
- 
isManagementModuleRunning
public static boolean isManagementModuleRunning()
- Returns:
 trueif the management module is running andfalseotherwise.- See Also:
 ISystemStatusChecker.isManagementModuleRunning()
 
- 
isDatabaseRunning
public static boolean isDatabaseRunning()
- Returns:
 trueif a connection to the system database exists,falseotherwise.- Since:
 - 8.0.0
 - See Also:
 ISystemStatusChecker.isDatabaseRunning()
 
- 
isSystemUpToDate
public static boolean isSystemUpToDate()
- Returns:
 trueif the system is up to date andfalseotherwise.- Since:
 - 8.0.0
 - See Also:
 ISystemStatusChecker.isSystemUpToDate()
 
 - 
 
 -