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:
Britt Park
2006-12-07 01:02:40 +00:00
parent 1ee6547fc4
commit c012545bfa
14 changed files with 687 additions and 163 deletions

View File

@@ -0,0 +1,17 @@
/**
*
*/
package org.alfresco.repo.avm;
/**
* Callback interface for those interested in store purges.
* @author britt
*/
public interface PurgeStoreCallback
{
/**
* A store has been purged.
* @param storeName The name of the purged store.
*/
public void storePurged(String storeName);
}