Interface ExecutionPhaseFactory
-
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface ExecutionPhaseFactory
A factory for theExecutionPhase
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ExecutionPhasecreate(ExecutionContext executionContext)Creates a newExecutionPhaseconfigured with anExecutionContext
-
-
-
Method Detail
-
create
ExecutionPhase create(ExecutionContext executionContext)
Creates a newExecutionPhaseconfigured with anExecutionContext- Parameters:
executionContext- theExecutionContextwith which to configure theExecutionPhase- Returns:
- the created
ExecutionPhase
-
-