mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-24 17:32:48 +00:00
Callback mechanism for notifying CIFS when Stores are
created or purged, and when versions are created or purged. git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@4541 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
18
source/java/org/alfresco/repo/avm/PurgeVersionCallback.java
Normal file
18
source/java/org/alfresco/repo/avm/PurgeVersionCallback.java
Normal file
@@ -0,0 +1,18 @@
|
||||
/**
|
||||
*
|
||||
*/
|
||||
package org.alfresco.repo.avm;
|
||||
|
||||
/**
|
||||
* A Callback interface for those interested in versions being purged.
|
||||
* @author britt
|
||||
*/
|
||||
public interface PurgeVersionCallback
|
||||
{
|
||||
/**
|
||||
* A version was purged from a store.
|
||||
* @param storeName The name of the store from which a version was purged.
|
||||
* @param versionID The id of the purged version.
|
||||
*/
|
||||
public void versionPurged(String storeName, int versionID);
|
||||
}
|
Reference in New Issue
Block a user