com.day.cq.wcm.api.msm.LiveCopy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aem-sdk-api Show documentation
Show all versions of aem-sdk-api Show documentation
The Adobe Experience Manager SDK
/*
* Copyright 1997-2008 Day Management AG
* Barfuesserplatz 6, 4001 Basel, Switzerland
* All Rights Reserved.
*
* This software is the confidential and proprietary information of
* Day Management AG, ("Confidential Information"). You shall not
* disclose such Confidential Information and shall use it only in
* accordance with the terms of the license agreement you entered into
* with Day.
*/
package com.day.cq.wcm.api.msm;
import java.util.Set;
/**
* Defines a Live Copy configuration between a blueprint and its target.
* It can be see as a configuration for a {@link LiveRelationship}
* @deprecated since 5.3 use {@link com.day.cq.wcm.msm.api.LiveCopy} instead
*/
@Deprecated
public interface LiveCopy {
/**
* Returns the path of the Live Copy
* For example: "/content/copy"
*
* @return livecopy path
*/
String getPath();
/**
* Returns the blueprint path of this Live Copy.
* For example: "/content/geometrixx"
*
* @return the blueprint path
*/
String getBlueprintPath();
/**
* Returns the update trigger for this Live Copy
* @return the trigger
*/
RolloutManager.Trigger getTrigger();
/**
* Returns if the Live Copy is deep
* @return true
if deep
*/
boolean isDeep();
/**
* Returns if the Live Copy is the root of a Live Copy tree
* @return true
if root
*/
boolean isRoot();
/**
* Returns the actions config of this relationship
* @return the actions config
*/
Set getActionsConfig();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy