Interface SetupPhase
-
- All Known Implementing Classes:
StartRunnableJarPhase
public interface SetupPhaseA single phase of the test server setup
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetId()Get the phase ID string, a list of those is used byServerSetupto decide which phases to runbooleanisStartupPhase()Is this a startup or shutdown phase?voidrun(ServerSetup owner)Run this phase in the context of supplied ServerSetup
-
-
-
Method Detail
-
run
void run(ServerSetup owner) throws Exception
Run this phase in the context of supplied ServerSetup- Throws:
Exception
-
isStartupPhase
boolean isStartupPhase()
Is this a startup or shutdown phase?
-
getId
String getId()
Get the phase ID string, a list of those is used byServerSetupto decide which phases to run
-
-