Interface SearchIndexedEntity<E>
-
- Type Parameters:
E- The entity type.
- All Superinterfaces:
SearchIndexedEntity
public interface SearchIndexedEntity<E> extends SearchIndexedEntity
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 IndexManagerindexManager()Class<E>javaClass()StringjpaName()
-
-
-
Method Detail
-
jpaName
String jpaName()
- Specified by:
jpaNamein interfaceSearchIndexedEntity- Returns:
- The
JPA nameof the entity.
-
javaClass
Class<E> javaClass()
- Specified by:
javaClassin interfaceSearchIndexedEntity- Returns:
- The Java class of the entity.
-
indexManager
IndexManager indexManager()
- Specified by:
indexManagerin interfaceSearchIndexedEntity- Returns:
- The index manager this entity is indexed in.
-
-