Interface ExtensionInvocationHandler
-
- All Superinterfaces:
java.lang.reflect.InvocationHandler
public interface ExtensionInvocationHandler extends java.lang.reflect.InvocationHandlerWhen proxying an extension class, implement this interface to provide a mechanism to obtain the underlying proxied class.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetPluginId()Get the plugin ID of the proxied extension point.java.lang.Class<? extends SpinnakerExtensionPoint>getTargetClass()Get the proxy target class.
-
-
-
Method Detail
-
getTargetClass
java.lang.Class<? extends SpinnakerExtensionPoint> getTargetClass()
Get the proxy target class.
-
getPluginId
java.lang.String getPluginId()
Get the plugin ID of the proxied extension point.
-
-