All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.dfki.cos.basys.common.component.registry.ComponentRegistryObserver Maven / Gradle / Ivy

package de.dfki.cos.basys.common.component.registry;

import de.dfki.cos.basys.common.component.ComponentInfo;

public interface ComponentRegistryObserver {

	ComponentInfo getComponentInfo(String componentId);
	
	void handleComponentAdded(ComponentInfo info);

	void handleComponentUpdated(ComponentInfo info);

	void handleComponentRemoved(ComponentInfo info);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy