Class DefaultImmutableImportProcessorSummary
- java.lang.Object
-
- com.atlassian.confluence.importexport.DefaultImmutableImportProcessorSummary
-
- All Implemented Interfaces:
ImmutableImportProcessorSummary
@Deprecated public class DefaultImmutableImportProcessorSummary extends Object implements ImmutableImportProcessorSummary
Deprecated.since 7.17.0. UseBackupRestoreManager
instead.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface com.atlassian.confluence.importexport.ImmutableImportProcessorSummary
ImmutableImportProcessorSummary.PersistedKey
-
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description Object
getNewIdFor(ImmutableImportProcessorSummary.PersistedKey oldKey)
Deprecated.Retrieves the new id of the object of the given old key.Object
getNewIdFor(Class clazz, Object originalId)
Deprecated.Retrieves the new id of the given original id of an object of the specific class.Set<ImmutableImportProcessorSummary.PersistedKey>
getNewPersistedKeys()
Deprecated.Retrieves all the new persisted keys.Object
getOriginalIdFor(ImmutableImportProcessorSummary.PersistedKey newKey)
Deprecated.Retrieves the old id of the object of the given new key.Object
getOriginalIdFor(Class clazz, Object newId)
Deprecated.Retrieves the original id of the given new id of an object of the specific class.Set<ImmutableImportProcessorSummary.PersistedKey>
getOriginalPersistedKeys()
Deprecated.Retrieves all the original persisted keys.
-
-
-
Method Detail
-
getNewIdFor
public Object getNewIdFor(Class clazz, Object originalId)
Deprecated.Description copied from interface:ImmutableImportProcessorSummary
Retrieves the new id of the given original id of an object of the specific class. This is equivalent toImmutableImportProcessorSummary.getNewIdFor(PersistedKey)
.- Specified by:
getNewIdFor
in interfaceImmutableImportProcessorSummary
- Parameters:
clazz
- The class of the persisted objectoriginalId
- The original id- Returns:
- the new id of the persisted object, or
null
if not found
-
getNewIdFor
public Object getNewIdFor(ImmutableImportProcessorSummary.PersistedKey oldKey)
Deprecated.Description copied from interface:ImmutableImportProcessorSummary
Retrieves the new id of the object of the given old key.- Specified by:
getNewIdFor
in interfaceImmutableImportProcessorSummary
- Parameters:
oldKey
- The key of the persisted object with the original id- Returns:
- the new id of the persisted object, or
null
if not found
-
getOriginalIdFor
public Object getOriginalIdFor(Class clazz, Object newId)
Deprecated.Description copied from interface:ImmutableImportProcessorSummary
Retrieves the original id of the given new id of an object of the specific class. This is equivalent toImmutableImportProcessorSummary.getOriginalIdFor(PersistedKey)
.- Specified by:
getOriginalIdFor
in interfaceImmutableImportProcessorSummary
- Parameters:
clazz
- The class of the persisted objectnewId
- The new id- Returns:
- the old id of the persisted object, or
null
if not found
-
getOriginalIdFor
public Object getOriginalIdFor(ImmutableImportProcessorSummary.PersistedKey newKey)
Deprecated.Description copied from interface:ImmutableImportProcessorSummary
Retrieves the old id of the object of the given new key.- Specified by:
getOriginalIdFor
in interfaceImmutableImportProcessorSummary
- Parameters:
newKey
- The key of the persisted object with the new id- Returns:
- the original id of the persisted object, or
null
if not found
-
getOriginalPersistedKeys
public Set<ImmutableImportProcessorSummary.PersistedKey> getOriginalPersistedKeys()
Deprecated.Description copied from interface:ImmutableImportProcessorSummary
Retrieves all the original persisted keys.- Specified by:
getOriginalPersistedKeys
in interfaceImmutableImportProcessorSummary
- Returns:
- a set of the original keys of all persisted object
-
getNewPersistedKeys
public Set<ImmutableImportProcessorSummary.PersistedKey> getNewPersistedKeys()
Deprecated.Description copied from interface:ImmutableImportProcessorSummary
Retrieves all the new persisted keys.- Specified by:
getNewPersistedKeys
in interfaceImmutableImportProcessorSummary
- Returns:
- a set of the new keys of all persisted object
-
-