Interface PojoAdditionalMetadataCollectorIndexedTypeNode
-
- All Superinterfaces:
PojoAdditionalMetadataCollector
public interface PojoAdditionalMetadataCollectorIndexedTypeNode extends PojoAdditionalMetadataCollector
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
backendName(String backendName)
void
enabled(boolean enabled)
void
indexName(String indexName)
void
routingBinder(RoutingBinder binder)
-
-
-
Method Detail
-
backendName
void backendName(String backendName)
- Parameters:
backendName
- The name of the backend where this type should be indexed, ornull
(the default) to target the default backend.
-
indexName
void indexName(String indexName)
- Parameters:
indexName
- The name of the backend where this type should be indexed, ornull
(the default) to derive the index name from the entity type.
-
enabled
void enabled(boolean enabled)
- Parameters:
enabled
-true
if this type must be indexed (the default once aPojoAdditionalMetadataCollectorIndexedTypeNode
is created),false
if it must not (in which case metadata provided through other methods is ignored).
-
routingBinder
void routingBinder(RoutingBinder binder)
- Parameters:
binder
- The routing binder.
-
-