Interface AssemblePageWithQualifier
-
- All Superinterfaces:
AssembleMultiple,AssemblePage
public interface AssemblePageWithQualifier extends AssemblePage
An element of theFluentAssemblerDSL allowing to assemble to aPageof multiple DTO or specify the qualifier of the assembler to use. This is only available in the DSL if a page of aggregates has been specified as input.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AssemblePagewith(Annotation qualifier)Allows to specify the qualifier of the assembler to use.AssemblePagewith(Class<? extends Annotation> qualifier)Allows to specify the qualifier class of the assembler to use.-
Methods inherited from interface org.seedstack.business.assembler.dsl.AssembleMultiple
toArrayOf, toCollectionOf, toListOf, toSetOf, toSliceOf, toStreamOf
-
Methods inherited from interface org.seedstack.business.assembler.dsl.AssemblePage
toPageOf
-
-
-
-
Method Detail
-
with
AssemblePage with(Annotation qualifier)
Allows to specify the qualifier of the assembler to use.- Parameters:
qualifier- the qualifier annotation.- Returns:
- the next element of the DSL.
-
with
AssemblePage with(Class<? extends Annotation> qualifier)
Allows to specify the qualifier class of the assembler to use.- Parameters:
qualifier- the qualifier annotation class.- Returns:
- the next element of the DSL.
-
-