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

org.jboss.weld.bean.proxy.ProxyObject Maven / Gradle / Ivy

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();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy