Interface SearchIndexedEntity
-
public interface SearchIndexedEntityA 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<?>javaClass()StringjpaName()
-
-
-
Method Detail
-
jpaName
String jpaName()
- Returns:
- The
JPA nameof the entity.
-
javaClass
Class<?> javaClass()
- Returns:
- The Java class of the entity.
-
indexManager
IndexManager indexManager()
- Returns:
- The index manager this entity is indexed in.
-
-