Package com.google.gerrit.server
Interface StartupCheck
-
- All Known Implementing Classes:
SystemGroupBackend.NameCheck
,UniversalGroupBackend.ConfigCheck
public interface StartupCheck
Check executed on Gerrit startup.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
check()
Performs Gerrit startup check, can abort startup by throwingStartupException
.
-
-
-
Method Detail
-
check
void check() throws StartupException
Performs Gerrit startup check, can abort startup by throwingStartupException
.Called on Gerrit startup after all
LifecycleListener
have been invoked.- Throws:
StartupException
- thrown if Gerrit startup should be aborted
-
-