List of usage examples for java.lang.reflect InvocationHandler interface-usage
From source file nl.strohalm.cyclos.spring.ServiceSecurityProxyInvocationHandler.java
/** * Invocation handler for service security proxies * * @author luis */ public class ServiceSecurityProxyInvocationHandler implements InvocationHandler {
From source file org.sonar.core.persistence.profiling.ProfilingPreparedStatementHandler.java
class ProfilingPreparedStatementHandler implements InvocationHandler { private static final String PARAM_PREFIX = "<"; private static final String PARAM_SUFFIX = ">"; private static final String PARAM_SEPARATOR = ", "; private static final SqlProfiling PROFILING = new SqlProfiling();
From source file com.github.jinahya.codec.commons.AbstractEncoderProxy.java
/**
* Abstract class for encoder proxies.
*
* @author Jin Kwon <jinahya at gmail.com>
* @param <T> encoder (delegate) type parameter.
*/
From source file org.codebistro.jsonrpc.Client.java
public class Client implements InvocationHandler { static Log log = LogFactory.getLog(Client.class); Session session; JSONSerializer message2Object;
From source file com.github.jinahya.codec.commons.AbstractDecoderProxy.java
/**
* Abstract class for decoder proxies.
*
* @author Jin Kwon <jinahya at gmail.com>
* @param <T> decoder(delegate) type parameter.
*/
From source file org.xlcloud.openstack.client.RefreshAuthenticationHandler.java
/**
* This class is a handler set on {@link OpenStackKeystoneClient} when obtained by
* {@link OpenStackKeystoneClient#getInstance(String, String, String, String)} method. Every time one of
* methods of {@link IdentityManagementClient} is invoked, this invocation is
* handled by {@link #invoke(Object, Method, Object[])} method.
*
From source file org.mule.component.BindingInvocationHandler.java
public class BindingInvocationHandler implements InvocationHandler { public static final String DEFAULT_METHOD_NAME_TOKEN = "default"; protected static Log logger = LogFactory.getLog(BindingInvocationHandler.class);
From source file org.bytesoft.openjtcc.supports.spring.NativeCompensableProxy.java
public class NativeCompensableProxy<T extends Serializable> implements InvocationHandler, BeanNameAware { protected TransactionManager transactionManager; protected long proxyId; protected Compensable<T> facade; protected Compensable<T> target;
From source file org.castor.cpa.persistence.sql.connection.CallableStatementProxy.java
/**
* Proxy class for JDBC CallableStatement class, to allow information gathering
* for the purpose of SQL statement logging.
*
* @author <a href="mailto:ralf DOT joachim AT syscon DOT eu">Ralf Joachim</a>
* @version $Revision$ $Date$
From source file org.castor.cpa.persistence.sql.connection.PreparedStatementProxy.java
/**
* Proxy class for JDBC PreparedStatement class, to allow information gathering
* for the purpose of SQL statement logging.
*
* @author <a href="mailto:ralf DOT joachim AT syscon DOT eu">Ralf Joachim</a>
* @version $Revision$ $Date$