org.jboss.weld.bean.proxy.ProxyObject Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of weld-servlet-shaded Show documentation
Show all versions of weld-servlet-shaded Show documentation
This jar bundles all the bits of Weld and CDI required for running in a Servlet container.
package org.jboss.weld.bean.proxy;
/**
* The interface implemented by proxy classes.
*
* @see ProxyFactory
*/
public interface ProxyObject {
/**
* Sets a handler. It can be used for changing handlers
* during runtime.
*/
void weld_setHandler(MethodHandler mi);
/**
* Get the handler.
* This can be used to access values of the underlying MethodHandler
* or to serialize it properly.
*/
MethodHandler weld_getHandler();
}