Interface MappingInitiator<C,MPBS extends MappingPartialBuildState>
-
- Type Parameters:
C
- The Java type of type metadata contributorsMPBS
- The Java type of the partially-built mapping
- All Known Implementing Classes:
AbstractPojoMappingInitiator
public interface MappingInitiator<C,MPBS extends MappingPartialBuildState>
An object responsible for initiating a mapping by contributing its basic configuration (indexed types, type metadata), then creating the mapper based on the configuration processed by the engine.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
configure(MappingBuildContext buildContext, MappingConfigurationCollector<C> configurationCollector)
Mapper<MPBS>
createMapper(MappingBuildContext buildContext, TypeMetadataContributorProvider<C> contributorProvider)
-
-
-
Method Detail
-
configure
void configure(MappingBuildContext buildContext, MappingConfigurationCollector<C> configurationCollector)
-
createMapper
Mapper<MPBS> createMapper(MappingBuildContext buildContext, TypeMetadataContributorProvider<C> contributorProvider)
-
-