Package com.adobe.cq.wcm.launches.cf
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
Modifier and TypeMethodDescriptiongetFieldName(boolean withoutReferencesPath) Returns the field name.Returns the path of the content fragment in the launch.Returns the user who last modified the content fragment in the launch.Returns the last modified date of the content fragment in the launch.Returns the user who last replicated the content fragment in the launch.Returns the last replicated date of the content fragment in the launch.Returns the value of the field in the launch.Returns the path of the content fragment in the source.Returns the user who last modified the content fragment in the source.Returns the last modified date of the content fragment in the source.Returns the user who last replicated the content fragment in the source.Returns the last replicated date of the content fragment in the source.Returns the value of the field in the source.Returns the status of the difference between the launch and the source.getVariationName(boolean withoutReferencesPath) Returns the name of the variation.
-
Method Details
-
getFieldName
Returns the field name.- Parameters:
withoutReferencesPath- a boolean indicating whether to exclude the references path from the field name- Returns:
- the field name
-
getLaunchValue
Object getLaunchValue()Returns the value of the field in the launch.- Returns:
- the value of the field in the launch
-
getSourceValue
Object getSourceValue()Returns the value of the field in the source.- Returns:
- the value of the field in the source
-
getLaunchContentFragmentPath
String getLaunchContentFragmentPath()Returns the path of the content fragment in the launch.- Returns:
- the path of the content fragment in the launch
-
getSourceContentFragmentPath
String getSourceContentFragmentPath()Returns the path of the content fragment in the source.- Returns:
- the path of the content fragment in the source
-
getLaunchLastModifiedDate
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
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
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
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
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
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
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
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
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
-