Package com.adobe.cq.wcm.launches.cf
Interface RebaseDiffEntry
-
@ProviderType public interface RebaseDiffEntry
The RebaseDiffEntry interface provides methods to get information about differences between a launch and its source. This information is used when performing a rebase operation.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetFieldName(boolean withoutReferencesPath)Returns the field name.java.lang.StringgetLaunchContentFragmentPath()Returns the path of the content fragment in the launch.java.lang.StringgetLaunchLastModifiedBy()Returns the user who last modified the content fragment in the launch.java.util.CalendargetLaunchLastModifiedDate()Returns the last modified date of the content fragment in the launch.java.lang.StringgetLaunchLastReplicatedBy()Returns the user who last replicated the content fragment in the launch.java.util.CalendargetLaunchLastReplicatedDate()Returns the last replicated date of the content fragment in the launch.java.lang.ObjectgetLaunchValue()Returns the value of the field in the launch.java.lang.StringgetSourceContentFragmentPath()Returns the path of the content fragment in the source.java.lang.StringgetSourceLastModifiedBy()Returns the user who last modified the content fragment in the source.java.util.CalendargetSourceLastModifiedDate()Returns the last modified date of the content fragment in the source.java.lang.StringgetSourceLastReplicatedBy()Returns the user who last replicated the content fragment in the source.java.util.CalendargetSourceLastReplicatedDate()Returns the last replicated date of the content fragment in the source.java.lang.ObjectgetSourceValue()Returns the value of the field in the source.DiffStatusgetStatus()Returns the status of the difference between the launch and the source.java.lang.StringgetVariationName(boolean withoutReferencesPath)Returns the name of the variation.
-
-
-
Method Detail
-
getFieldName
java.lang.String getFieldName(boolean withoutReferencesPath)
Returns the field name.- Parameters:
withoutReferencesPath- a boolean indicating whether to exclude the references path from the field name- Returns:
- the field name
-
getLaunchValue
java.lang.Object getLaunchValue()
Returns the value of the field in the launch.- Returns:
- the value of the field in the launch
-
getSourceValue
java.lang.Object getSourceValue()
Returns the value of the field in the source.- Returns:
- the value of the field in the source
-
getLaunchContentFragmentPath
java.lang.String getLaunchContentFragmentPath()
Returns the path of the content fragment in the launch.- Returns:
- the path of the content fragment in the launch
-
getSourceContentFragmentPath
java.lang.String getSourceContentFragmentPath()
Returns the path of the content fragment in the source.- Returns:
- the path of the content fragment in the source
-
getLaunchLastModifiedDate
java.util.Calendar getLaunchLastModifiedDate()
Returns the last modified date of the content fragment in the launch.- Returns:
- the last modified date of the content fragment in the launch
-
getSourceLastModifiedDate
java.util.Calendar getSourceLastModifiedDate()
Returns the last modified date of the content fragment in the source.- Returns:
- the last modified date of the content fragment in the source
-
getLaunchLastModifiedBy
java.lang.String getLaunchLastModifiedBy()
Returns the user who last modified the content fragment in the launch.- Returns:
- the user who last modified the content fragment in the launch
-
getSourceLastModifiedBy
java.lang.String getSourceLastModifiedBy()
Returns the user who last modified the content fragment in the source.- Returns:
- the user who last modified the content fragment in the source
-
getStatus
DiffStatus getStatus()
Returns the status of the difference between the launch and the source.- Returns:
- the status of the difference
-
getVariationName
java.lang.String getVariationName(boolean withoutReferencesPath)
Returns the name of the variation.- Parameters:
withoutReferencesPath- a boolean indicating whether to exclude the references path from the variation name- Returns:
- the name of the variation
-
getSourceLastReplicatedDate
java.util.Calendar getSourceLastReplicatedDate()
Returns the last replicated date of the content fragment in the source.- Returns:
- the last replicated date of the content fragment in the source
-
getSourceLastReplicatedBy
java.lang.String getSourceLastReplicatedBy()
Returns the user who last replicated the content fragment in the source.- Returns:
- the user who last replicated the content fragment in the source
-
getLaunchLastReplicatedDate
java.util.Calendar getLaunchLastReplicatedDate()
Returns the last replicated date of the content fragment in the launch.- Returns:
- the last replicated date of the content fragment in the launch
-
getLaunchLastReplicatedBy
java.lang.String getLaunchLastReplicatedBy()
Returns the user who last replicated the content fragment in the launch.- Returns:
- the user who last replicated the content fragment in the launch
-
-