mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-24 17:32:48 +00:00
Patch application on startup reports progress
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@2190 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -16,6 +16,9 @@
|
||||
*/
|
||||
package org.alfresco.repo.admin.patch;
|
||||
|
||||
import java.util.Date;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* Manages patches applied against the repository.
|
||||
* <p>
|
||||
@@ -43,4 +46,13 @@ public interface PatchService
|
||||
* was termintated before all patches could be applied.
|
||||
*/
|
||||
public boolean applyOutstandingPatches();
|
||||
|
||||
/**
|
||||
* Retrieves all applied patches between two specific times.
|
||||
*
|
||||
* @param from the start date of the search, or null to get all patches from the start
|
||||
* @param to the end date of the search, or null to g
|
||||
* @return Returns all applied patches (successful or not)
|
||||
*/
|
||||
public List<PatchInfo> getPatches(Date fromDate, Date toDate);
|
||||
}
|
||||
|
Reference in New Issue
Block a user