mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-06-02 17:35:18 +00:00
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
19 lines
312 B
Java
19 lines
312 B
Java
/**
|
|
*
|
|
*/
|
|
package org.alfresco.repo.avm;
|
|
|
|
/**
|
|
* Interface for listeners to new store events.
|
|
* @author britt
|
|
*/
|
|
public interface CreateStoreCallback
|
|
{
|
|
/**
|
|
* A new store has been created.
|
|
* @param storeName The name of the new store.
|
|
*/
|
|
public void storeCreated(String storeName);
|
|
}
|
|
|