Interface InvokingUseCaseStepBuilder
-
- All Known Subinterfaces:
Step1Builder
- All Known Implementing Classes:
UseCaseInvocationBuilder
public interface InvokingUseCaseStepBuilderConfigures theUseCaseInvocationBuilderwith a new use case invocation definition of the givenClass.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description <U> Step2Builder<U>invokingUseCase(Class<U> useCaseClass)Adds a new invocation information for a use case of the givenClass.
-
-
-
Method Detail
-
invokingUseCase
<U> Step2Builder<U> invokingUseCase(Class<U> useCaseClass)
Adds a new invocation information for a use case of the givenClass.- Type Parameters:
U- the type of the use case- Parameters:
useCaseClass- theClassof the use case- Returns:
- the next step in the fluent builder interface
-
-