Class PrefixNameConflictResolver
- java.lang.Object
-
- com.atlassian.confluence.pages.persistence.dao.bulk.impl.PrefixNameConflictResolver
-
- All Implemented Interfaces:
PageNameConflictResolver
public class PrefixNameConflictResolver extends Object implements PageNameConflictResolver
Will apply a prefix before a conflicting page title- Since:
- 5.10
-
-
Constructor Summary
Constructors Constructor Description PrefixNameConflictResolver(boolean shouldApplyForNewName, String prefix)
PrefixNameConflictResolver(boolean shouldApplyForNewName, String prefix, int maxRetry)
PrefixNameConflictResolver(String prefix)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
couldProvideNewName()
Indicates that this always provides a new name during the copy process, even for non-conflicting pagesint
getMaxRetryNumber()
This is maximum number to retry saving page.String
resolveConflict(int currentRetryNumber, String originalName)
Implements the name conflict resolution strategy
-
-
-
Constructor Detail
-
PrefixNameConflictResolver
public PrefixNameConflictResolver(String prefix)
-
PrefixNameConflictResolver
public PrefixNameConflictResolver(boolean shouldApplyForNewName, String prefix)
-
PrefixNameConflictResolver
public PrefixNameConflictResolver(boolean shouldApplyForNewName, String prefix, int maxRetry)
-
-
Method Detail
-
couldProvideNewName
public boolean couldProvideNewName()
Description copied from interface:PageNameConflictResolver
Indicates that this always provides a new name during the copy process, even for non-conflicting pages- Specified by:
couldProvideNewName
in interfacePageNameConflictResolver
- Returns:
- true if yes otherwise false
-
getMaxRetryNumber
public int getMaxRetryNumber()
Description copied from interface:PageNameConflictResolver
This is maximum number to retry saving page. In case, there is duplication still happen even we already try to rename the page- Specified by:
getMaxRetryNumber
in interfacePageNameConflictResolver
- Returns:
- max retry to save page with new name
-
resolveConflict
public String resolveConflict(int currentRetryNumber, String originalName)
Description copied from interface:PageNameConflictResolver
Implements the name conflict resolution strategy- Specified by:
resolveConflict
in interfacePageNameConflictResolver
- Returns:
- new name which could solve conflict
-
-