Class StartupState
- java.lang.Object
-
- nl.gx.webmanager.services.framework.spi.StartupState
-
public final class StartupState extends Object
Manages startup state for backend-webapp e.g. SiteWorks and filters.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static boolean
hasFailed()
Returns whether WebManager failed startup.static boolean
hasStarted()
Returns whether WebManager was successfully started.static void
resetStatus()
Reset WebManager startup state.static void
setFailed()
Notification of a failed startup.static void
setStarted()
Notification of a successful startup.
-
-
-
Method Detail
-
setStarted
public static void setStarted()
Notification of a successful startup. This method will be called from nl.gx.webmanager.startup.impl.Startup in webmanager-startup-bundle.
-
hasStarted
public static boolean hasStarted()
Returns whether WebManager was successfully started.
-
setFailed
public static void setFailed()
Notification of a failed startup.
-
hasFailed
public static boolean hasFailed()
Returns whether WebManager failed startup.
-
resetStatus
public static void resetStatus()
Reset WebManager startup state.
-
-