Class PageCopyOptions
- java.lang.Object
-
- com.atlassian.confluence.pages.persistence.dao.bulk.DefaultBulkOptions
-
- com.atlassian.confluence.pages.persistence.dao.bulk.copy.PageCopyOptions
-
- All Implemented Interfaces:
Serializable
public class PageCopyOptions extends DefaultBulkOptions implements Serializable
Option to guide how we should copy pages- Since:
- 5.10
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
PageCopyOptions.Builder
-
Nested classes/interfaces inherited from class com.atlassian.confluence.pages.persistence.dao.bulk.DefaultBulkOptions
DefaultBulkOptions.BaseBuilder<T extends DefaultBulkOptions.BaseBuilder>
-
-
Field Summary
-
Fields inherited from class com.atlassian.confluence.pages.persistence.dao.bulk.DefaultBulkOptions
DEFAULT_BATCH_SIZE_PROPERTY, MAX_PROCESSED_ENTRIES_PROPERTY
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static PageCopyOptions.Builder
builder()
PageContentTransformer
getPageContentTransformer()
PageNameConflictResolver
getPageNameConflictResolver()
@Nullable String
getRequestId()
boolean
shouldCopyAttachments()
boolean
shouldCopyContentProperties()
boolean
shouldCopyLabels()
boolean
shouldCopyPermissions()
boolean
shouldSkipLinkUpdates()
-
Methods inherited from class com.atlassian.confluence.pages.persistence.dao.bulk.DefaultBulkOptions
defaultBuilder, getBatchSize, getMaxProcessedEntries, getProgressMeter, getUser
-
-
-
-
Method Detail
-
shouldCopyLabels
public boolean shouldCopyLabels()
-
shouldCopyAttachments
public boolean shouldCopyAttachments()
-
shouldCopyPermissions
public boolean shouldCopyPermissions()
-
shouldCopyContentProperties
public boolean shouldCopyContentProperties()
-
getRequestId
public @Nullable String getRequestId()
-
getPageNameConflictResolver
public PageNameConflictResolver getPageNameConflictResolver()
-
getPageContentTransformer
public PageContentTransformer getPageContentTransformer()
-
shouldSkipLinkUpdates
public boolean shouldSkipLinkUpdates()
-
builder
public static PageCopyOptions.Builder builder()
-
-