mirror of
				https://github.com/Alfresco/alfresco-community-repo.git
				synced 2025-10-29 15:21:53 +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
		
			
				
	
	
		
			18 lines
		
	
	
		
			319 B
		
	
	
	
		
			Java
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			319 B
		
	
	
	
		
			Java
		
	
	
	
	
	
| /**
 | |
|  * 
 | |
|  */
 | |
| 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);
 | |
| }
 |