mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-24 17:32:48 +00:00
Patch checkpoint.
Service descriptor changes including introduction of schema number. git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@2161 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -16,10 +16,6 @@
|
||||
*/
|
||||
package org.alfresco.repo.admin.patch;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
import org.alfresco.service.cmr.admin.PatchInfo;
|
||||
|
||||
/**
|
||||
* Manages patches applied against the repository.
|
||||
* <p>
|
||||
@@ -32,19 +28,11 @@ import org.alfresco.service.cmr.admin.PatchInfo;
|
||||
public interface PatchService
|
||||
{
|
||||
/**
|
||||
* Set the complete list of patches. All patch IDs must remain static for the duration their
|
||||
* existence. This allows us to recognise the
|
||||
* Registers a patch with the service that executes them.
|
||||
*
|
||||
* @param patches the complete list of patches (either applied or not)
|
||||
* @param patch the patch to register
|
||||
*/
|
||||
public void setPatches(List<Patch> patches);
|
||||
|
||||
/**
|
||||
* Get a list of all previously applied patches
|
||||
*
|
||||
* @return Returns a list of patch application information
|
||||
*/
|
||||
public List<PatchInfo> getAppliedPatches();
|
||||
public void registerPatch(Patch patch);
|
||||
|
||||
/**
|
||||
* Apply all outstanding patches that are relevant to the repo.
|
||||
|
Reference in New Issue
Block a user