Interface IndexedEntityBindingContext
-
- All Superinterfaces:
IndexBindingContext
public interface IndexedEntityBindingContext extends IndexBindingContext
The binding context associated to the root node in the entity tree.- See Also:
IndexBindingContext
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidexplicitRouting()Inform the backend that documents for the mapped index will always be provided along with an explicit routing key, to be used to route the document to a specific shard.<I> voididDslConverter(Class<I> valueType, ToDocumentValueConverter<I,String> converter)<I> voididProjectionConverter(Class<I> valueType, FromDocumentValueConverter<String,I> converter)-
Methods inherited from interface org.hibernate.search.engine.mapper.mapping.building.spi.IndexBindingContext
addIndexedEmbeddedIfIncluded, createTypeFactory, createTypeFactory, schemaElement, schemaElement
-
-
-
-
Method Detail
-
explicitRouting
void explicitRouting()
Inform the backend that documents for the mapped index will always be provided along with an explicit routing key, to be used to route the document to a specific shard.
-
idDslConverter
<I> void idDslConverter(Class<I> valueType, ToDocumentValueConverter<I,String> converter)
-
idProjectionConverter
<I> void idProjectionConverter(Class<I> valueType, FromDocumentValueConverter<String,I> converter)
-
-