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. UseBackupRestoreManagerinstead. 
- 
- 
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 ObjectgetNewIdFor(ImmutableImportProcessorSummary.PersistedKey oldKey)Deprecated.Retrieves the new id of the object of the given old key.ObjectgetNewIdFor(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.ObjectgetOriginalIdFor(ImmutableImportProcessorSummary.PersistedKey newKey)Deprecated.Retrieves the old id of the object of the given new key.ObjectgetOriginalIdFor(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:ImmutableImportProcessorSummaryRetrieves the new id of the given original id of an object of the specific class. This is equivalent toImmutableImportProcessorSummary.getNewIdFor(PersistedKey).- Specified by:
 getNewIdForin interfaceImmutableImportProcessorSummary- Parameters:
 clazz- The class of the persisted objectoriginalId- The original id- Returns:
 - the new id of the persisted object, or 
nullif not found 
 
- 
getNewIdFor
public Object getNewIdFor(ImmutableImportProcessorSummary.PersistedKey oldKey)
Deprecated.Description copied from interface:ImmutableImportProcessorSummaryRetrieves the new id of the object of the given old key.- Specified by:
 getNewIdForin interfaceImmutableImportProcessorSummary- Parameters:
 oldKey- The key of the persisted object with the original id- Returns:
 - the new id of the persisted object, or 
nullif not found 
 
- 
getOriginalIdFor
public Object getOriginalIdFor(Class clazz, Object newId)
Deprecated.Description copied from interface:ImmutableImportProcessorSummaryRetrieves the original id of the given new id of an object of the specific class. This is equivalent toImmutableImportProcessorSummary.getOriginalIdFor(PersistedKey).- Specified by:
 getOriginalIdForin interfaceImmutableImportProcessorSummary- Parameters:
 clazz- The class of the persisted objectnewId- The new id- Returns:
 - the old id of the persisted object, or 
nullif not found 
 
- 
getOriginalIdFor
public Object getOriginalIdFor(ImmutableImportProcessorSummary.PersistedKey newKey)
Deprecated.Description copied from interface:ImmutableImportProcessorSummaryRetrieves the old id of the object of the given new key.- Specified by:
 getOriginalIdForin interfaceImmutableImportProcessorSummary- Parameters:
 newKey- The key of the persisted object with the new id- Returns:
 - the original id of the persisted object, or 
nullif not found 
 
- 
getOriginalPersistedKeys
public Set<ImmutableImportProcessorSummary.PersistedKey> getOriginalPersistedKeys()
Deprecated.Description copied from interface:ImmutableImportProcessorSummaryRetrieves all the original persisted keys.- Specified by:
 getOriginalPersistedKeysin interfaceImmutableImportProcessorSummary- Returns:
 - a set of the original keys of all persisted object
 
 
- 
getNewPersistedKeys
public Set<ImmutableImportProcessorSummary.PersistedKey> getNewPersistedKeys()
Deprecated.Description copied from interface:ImmutableImportProcessorSummaryRetrieves all the new persisted keys.- Specified by:
 getNewPersistedKeysin interfaceImmutableImportProcessorSummary- Returns:
 - a set of the new keys of all persisted object
 
 
 - 
 
 -