alfresco-community-repo/source/java/org/alfresco/repo/avm/CreateVersionCallback.java
Britt Park c012545bfa 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
2006-12-07 01:02:40 +00:00

19 lines
453 B
Java

/**
*
*/
package org.alfresco.repo.avm;
/**
* Callback interface for those interested in new version creation.
* @author britt
*/
public interface CreateVersionCallback
{
/**
* A version of a store has been purged.
* @param storeName The name of the store in which a new version has been created.
* @param versionID The version id of the new version.
*/
public void versionCreated(String storeName, int versionID);
}