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

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

There is a newer version: 3.0.0.Alpha1
Show newest version
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 setHandler(MethodHandler mi);

    /**
     * Get the handler.
     * This can be used to access values of the underlying MethodHandler
     * or to serialize it properly.
     */
    MethodHandler getHandler();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy