Class MassIndexingEntityFailureContext
- java.lang.Object
-
- org.hibernate.search.mapper.pojo.massindexing.MassIndexingFailureContext
-
- org.hibernate.search.mapper.pojo.massindexing.MassIndexingEntityFailureContext
-
public class MassIndexingEntityFailureContext extends MassIndexingFailureContext
Contextual information about a failure to load or index a entities during mass indexing.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
MassIndexingEntityFailureContext.Builder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static MassIndexingEntityFailureContext.Builder
builder()
List<Object>
entityReferences()
-
Methods inherited from class org.hibernate.search.mapper.pojo.massindexing.MassIndexingFailureContext
failingOperation, throwable
-
-
-
-
Method Detail
-
builder
public static MassIndexingEntityFailureContext.Builder builder()
-
entityReferences
public List<Object> entityReferences()
- Returns:
- A list of references to entities that may not be indexed correctly as a result of the failure.
Never
null
, but may be empty. UseObject.toString()
to get a textual representation of each reference, or cast it to the mapper-specificEntityReference
type.
-
-