RolloutManager
instead@Deprecated
public interface RolloutManager
Modifier and Type | Interface and Description |
---|---|
static class |
RolloutManager.Trigger
Deprecated.
Trigger type that defines when a rollout should happen.
|
Modifier and Type | Method and Description |
---|---|
boolean |
isExcludedNode(Node node)
Deprecated.
Returns if one of the node types or mixins is defined as excluded in the
RolloutManager configuration |
boolean |
isExcludedNodeType(java.lang.String nodeType)
Deprecated.
Returns if a node type is defined as excluded in the
RolloutManager configuration |
boolean |
isExcludedPageProperty(java.lang.String propertyName)
Deprecated.
Returns if a property is defined as excluded in the
RolloutManager configuration for a page. |
boolean |
isExcludedParagraphProperty(java.lang.String propertyName)
Deprecated.
Returns if a property is defined as excluded in the
RolloutManager configuration for a paragraph. |
boolean |
isExcludedProperty(boolean isPage,
java.lang.String propertyName)
Deprecated.
Returns if a property is defined as excluded in the
RolloutManager configuration. |
boolean |
isExcludedProperty(java.lang.String propertyName)
Deprecated.
Use #isExcludedPageProperty instead.
|
boolean |
isReservedProperty(java.lang.String propertyName)
Deprecated.
Returns if a property is a MSM reserved property
|
void |
rollout(Page master,
boolean isDeep,
RolloutManager.Trigger trigger,
boolean reset,
java.lang.String[] targets)
Deprecated.
Execute a rollout on all the found live copies of the
master page. |
void |
rollout(Page master,
boolean isDeep,
RolloutManager.Trigger trigger,
java.lang.String[] targets)
Deprecated.
Execute a rollout on all the found live copies of the
master page. |
void |
rollout(Page master,
RolloutManager.Trigger trigger,
boolean reset,
java.lang.String[] targets,
java.lang.String[] paragraphs)
Deprecated.
Execute a rollout of the
paragraph to all live copies of
the of master page. |
void |
rollout(Page master,
RolloutManager.Trigger trigger,
boolean reset,
java.lang.String[] targets,
java.lang.String[] paragraphs,
boolean delete)
Deprecated.
Execute a rollout of the
paragraph to all live copies of
the of master page. |
void |
rollout(Page master,
RolloutManager.Trigger trigger,
java.lang.String[] targets,
java.lang.String[] paragraphs)
Deprecated.
Execute a rollout of the
paragraph to all live copies of
the of master page. |
void |
rollout(Page master,
RolloutManager.Trigger trigger,
java.lang.String[] targets,
java.lang.String[] paragraphs,
boolean delete)
Deprecated.
Execute a rollout of the
paragraph to all live copies of
the of master page. |
void |
rollout(ResourceResolver resolver,
LiveRelationship relation)
Deprecated.
Rollout the content for one relation ship.
|
void |
rollout(ResourceResolver resolver,
LiveRelationship relation,
boolean reset)
Deprecated.
Rollout the content for one relation ship.
|
void |
updateRolloutInfo(Node node,
boolean deepUpdate,
boolean autoSave)
Deprecated.
Update rollout info on the
node . |
void rollout(Page master, boolean isDeep, RolloutManager.Trigger trigger, java.lang.String[] targets) throws WCMException
master
page.master
- master page to rollouttrigger
- rollout triggertargets
- paths of live copies to update. null
for all.isDeep
- if true
all child pages are updated, too.WCMException
- if an error during this operation occurs.void rollout(Page master, boolean isDeep, RolloutManager.Trigger trigger, boolean reset, java.lang.String[] targets) throws WCMException
master
page.master
- master page to rollouttrigger
- rollout triggerreset
- if true
rollout is run in reset mode, Live Copy is completely resettargets
- paths of live copies to update. null
for all.isDeep
- if true
all child pages are updated, too.WCMException
- if an error during this operation occurs.void rollout(Page master, RolloutManager.Trigger trigger, java.lang.String[] targets, java.lang.String[] paragraphs) throws WCMException
paragraph
to all live copies of
the of master
page.master
- Master page to rolloutparagraphs
- (absolute) paths of paragraphstrigger
- rollout triggertargets
- paths of live copies to update. null
for all.WCMException
- if an error during this operation occurs.void rollout(Page master, RolloutManager.Trigger trigger, boolean reset, java.lang.String[] targets, java.lang.String[] paragraphs) throws WCMException
paragraph
to all live copies of
the of master
page.master
- Master page to rollouttrigger
- rollout triggerreset
- if true
rollout is run in reset mode, Live Copy is completely resettargets
- paths of live copies to update. null
for all.paragraphs
- (absolute) paths of paragraphsWCMException
- if an error during this operation occurs.void rollout(Page master, RolloutManager.Trigger trigger, java.lang.String[] targets, java.lang.String[] paragraphs, boolean delete) throws WCMException
paragraph
to all live copies of
the of master
page. If delete
is true
,
the paragraph is deleted and then rolledout.master
- Master page to rolloutparagraphs
- (absolute) paths of paragraphstrigger
- rollout triggertargets
- paths of live copies to update. null
for all.delete
- true
if paragraph should be deletedWCMException
- if an error during this operation occurs.void rollout(Page master, RolloutManager.Trigger trigger, boolean reset, java.lang.String[] targets, java.lang.String[] paragraphs, boolean delete) throws WCMException
paragraph
to all live copies of
the of master
page. If delete
is true
,
the paragraph is deleted and then rolledout.master
- Master page to rolloutparagraphs
- (absolute) paths of paragraphstrigger
- rollout triggerreset
- if true
rollout is run in reset mode, Live Copy is completely resettargets
- paths of live copies to update. null
for all.delete
- true
if paragraph should be deletedWCMException
- if an error during this operation occurs.void rollout(ResourceResolver resolver, LiveRelationship relation) throws WCMException
resolver
- resource resolverrelation
- relation to rolloutWCMException
- if an error during this operation occurs.void rollout(ResourceResolver resolver, LiveRelationship relation, boolean reset) throws WCMException
resolver
- resource resolverrelation
- relation to rolloutreset
- if true
rollout is run in reset mode, Live Copy is completely resetWCMException
- if an error during this operation occurs.void updateRolloutInfo(Node node, boolean deepUpdate, boolean autoSave) throws WCMException
node
. To use after a rollout operation.node
- Node to updatedeepUpdate
- Children of the node can be updated by setting
deepUpdate
to true.autoSave
- Save modificationsWCMException
- if an error during this operation occurs.boolean isExcludedProperty(java.lang.String propertyName)
RolloutManager
configuration.
Excluded properties include reserved properties.propertyName
- repository property name.boolean isExcludedProperty(boolean isPage, java.lang.String propertyName)
RolloutManager
configuration.
If isPage
is true, checks in page exclusion list. Otherwise, check in paragraph exclusion list
Excluded properties include reserved properties.isPage
- Page propertypropertyName
- repository property name.boolean isExcludedPageProperty(java.lang.String propertyName)
RolloutManager
configuration for a page.
Excluded properties include reserved properties.propertyName
- repository property name.boolean isExcludedParagraphProperty(java.lang.String propertyName)
RolloutManager
configuration for a paragraph.
Excluded properties include reserved properties.propertyName
- repository property name.boolean isExcludedNodeType(java.lang.String nodeType)
RolloutManager
configurationnodeType
- repository node type.boolean isExcludedNode(Node node) throws RepositoryException
RolloutManager
configurationnode
- node to check.RepositoryException
- if an read/write error during this operation occurs.boolean isReservedProperty(java.lang.String propertyName)
propertyName
- repository property name.Copyright © 2010 - 2020 Adobe. All Rights Reserved