Class ConfluenceCloudUserFinder
- java.lang.Object
-
- com.atlassian.confluence.impl.backuprestore.restore.idmapping.finders.ConfluenceCloudUserFinder
-
- All Implemented Interfaces:
ExistingEntityFinder
public class ConfluenceCloudUserFinder extends Object implements ExistingEntityFinder
Finds users by emails. Used for importing spaces from Confluence Cloud.- Since:
- 8.1.0
-
-
Constructor Summary
Constructors Constructor Description ConfluenceCloudUserFinder(ConfluenceUserFinder regularConfluenceUserFinder)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Map<ImportedObjectV2,Object>findExistingObjectIds(Collection<ImportedObjectV2> objects)Finds already existing objects in the database.Class<?>getSupportedClass()
-
-
-
Constructor Detail
-
ConfluenceCloudUserFinder
public ConfluenceCloudUserFinder(ConfluenceUserFinder regularConfluenceUserFinder)
-
-
Method Detail
-
findExistingObjectIds
public Map<ImportedObjectV2,Object> findExistingObjectIds(Collection<ImportedObjectV2> objects)
Description copied from interface:ExistingEntityFinderFinds already existing objects in the database.- Specified by:
findExistingObjectIdsin interfaceExistingEntityFinder- 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
public Class<?> getSupportedClass()
- Specified by:
getSupportedClassin interfaceExistingEntityFinder- Returns:
- the entity class that is processed by this finder
-
-