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:
@@ -31,8 +31,8 @@ public interface AppliedPatch
|
||||
public String getDescription();
|
||||
public void setDescription(String description);
|
||||
|
||||
public String getApplyAfterVersion();
|
||||
public void setApplyAfterVersion(String version);
|
||||
public String getApplyToVersion();
|
||||
public void setApplyToVersion(String version);
|
||||
|
||||
public boolean getSucceeded();
|
||||
public void setSucceeded(boolean succeeded);
|
||||
|
@@ -16,7 +16,7 @@
|
||||
optimistic-lock="version" >
|
||||
<id column="id" length="32" name="id" type="string" />
|
||||
<property name="description" column="description" type="string" length="1024" />
|
||||
<property name="applyAfterVersion" column="apply_after_version" type="string" length="10" />
|
||||
<property name="applyToVersion" column="apply_to_version" type="string" length="10" />
|
||||
<property name="succeeded" column="succeeded" type="boolean" />
|
||||
<property name="appliedOnVersion" column="applied_on_version" type="string" length="10" />
|
||||
<property name="appliedOnDate" column="applied_on_date" type="timestamp" />
|
||||
|
@@ -76,11 +76,11 @@ public class AppliedPatchImpl implements AppliedPatch
|
||||
this.succeeded = succeeded;
|
||||
}
|
||||
|
||||
public String getApplyAfterVersion()
|
||||
public String getApplyToVersion()
|
||||
{
|
||||
return applyAfterVersion;
|
||||
}
|
||||
public void setApplyAfterVersion(String applyAfterVersion)
|
||||
public void setApplyToVersion(String applyAfterVersion)
|
||||
{
|
||||
this.applyAfterVersion = applyAfterVersion;
|
||||
}
|
||||
|
Reference in New Issue
Block a user