/**
 * 
 */
package eu.dnetlib.data.collective.manager;



/**
 * @author jochen
 * @param <T> instance datastructure
 *
 */
public interface IInstanceManager<T> {
	
	public boolean notifyResourceAdded(String resourceId);
	
	public boolean notifyResourceRemoved(String resourceId);
	
	public boolean notifyResourceUpdated(String resourceId);

}
