THIS IS A TEST INSTANCE. ALL YOUR CHANGES WILL BE LOST!!!!
How to extend Tuscany Java SCA?
package org.apache.tuscany.core; /** * The registry for the Tuscany core extension points. * * @version $Rev: 529327 $ $Date: 2007-04-16 10:10:43 -0700 (Mon, 16 Apr 2007) $ */ public interface ExtensionPointRegistry { /** * Add an extension point to the registry * @param <T> * @param extensionPointType The interface of the extension point * @param extensionPoint The instance of the extension point */ <T> void addExtensionPoint(Class<T> extensionPointType, T extensionPoint); /** * Get the extension point by the interface * @param <T> * @param extensionPointType * @return */ <T> T getExtensionPoint(Class<T> extensionPointType); /** * Remove an extension point * @param extensionPoint */ void removeExtensionPoint(Class extensionPoint); }