Interface PluginExistingEntityFinder
-
public interface PluginExistingEntityFinder
This is a plugin available interface which compatible withExistingEntityFinder
- Since:
- 8.3.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Map<ImportedObjectModel,Object>
findExistingObjectIds(Collection<ImportedObjectModel> objects)
Finds already existing objects in the database.Class<?>
getSupportedClass()
-
-
-
Method Detail
-
findExistingObjectIds
Map<ImportedObjectModel,Object> findExistingObjectIds(Collection<ImportedObjectModel> objects)
Finds already existing objects in the database.- Parameters:
objects
- collection of imported objects- Returns:
- map where key is the importing object and value is the id of the alredy existing object.
-
getSupportedClass
Class<?> getSupportedClass()
- Returns:
- the entity class that is processed by this finder. Currently, we only allow subclass of ConfluenceEntityObject
-
-