Interface EntityFieldValuesFactory
- All Known Implementing Classes:
DefaultEntityFieldValuesFactory
public interface EntityFieldValuesFactory
Abstracts the means to create the list of field values for an entity (issue, change, comment, or work log).
- Since:
- 10.4
-
Method Summary
Modifier and TypeMethodDescription<T extends WithId>
Map<T, FieldValues> createFieldValues(Class<T> clazz, List<T> entities) Batching API so that field values factories (and in turn extractors) can handle multiple entities.<T extends WithId>
FieldValuescreateFieldValues(Class<T> clazz, T entity)
-
Method Details
-
createFieldValues
-
createFieldValues
Batching API so that field values factories (and in turn extractors) can handle multiple entities.- Type Parameters:
T- The type of the entity to index.- Parameters:
clazz- The type of the entity to index.entities- One or more entities.- Returns:
- The field values indexed by entity.
- Since:
- 11.1
-