mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-24 17:32:48 +00:00
Fixes for patch mechanisms; Javadocs; Some field renaming
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@2130 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -33,7 +33,7 @@ public class PatchInfo implements Serializable
|
||||
|
||||
private String id;
|
||||
private String description;
|
||||
private String applyAfterVersion;
|
||||
private String applyToVersion;
|
||||
private boolean succeeded;
|
||||
private String appliedOnVersion;
|
||||
private Date appliedOnDate;
|
||||
@@ -43,7 +43,7 @@ public class PatchInfo implements Serializable
|
||||
{
|
||||
this.id = id;
|
||||
this.description = description;
|
||||
this.applyAfterVersion = applyAfterVersion;
|
||||
this.applyToVersion = applyAfterVersion;
|
||||
this.succeeded = false;
|
||||
}
|
||||
|
||||
@@ -51,7 +51,7 @@ public class PatchInfo implements Serializable
|
||||
{
|
||||
this.id = appliedPatch.getId();
|
||||
this.description = appliedPatch.getDescription();
|
||||
this.applyAfterVersion = appliedPatch.getApplyAfterVersion();
|
||||
this.applyToVersion = appliedPatch.getApplyToVersion();
|
||||
|
||||
this.succeeded = appliedPatch.getSucceeded();
|
||||
this.appliedOnVersion = appliedPatch.getAppliedOnVersion();
|
||||
@@ -78,9 +78,9 @@ public class PatchInfo implements Serializable
|
||||
/**
|
||||
* @return Returns the version of the repository after which this patch must be applied
|
||||
*/
|
||||
public String getApplyAfterVersion()
|
||||
public String getApplyToVersion()
|
||||
{
|
||||
return applyAfterVersion;
|
||||
return applyToVersion;
|
||||
}
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user