Interface SearchIndexedEntity<E>
-
- Type Parameters:
E
- The entity type.
public interface SearchIndexedEntity<E>
A descriptor of an indexed entity type, exposing in particular the index manager for this entity.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IndexManager
indexManager()
Class<E>
javaClass()
String
jpaName()
-
-
-
Method Detail
-
jpaName
String jpaName()
- Returns:
- The
JPA name
of the entity.
-
indexManager
IndexManager indexManager()
- Returns:
- The index manager this entity is indexed in.
-
-