List of usage examples for java.lang.reflect InvocationHandler interface-usage
From source file org.springmodules.xt.model.generator.factory.FactoryGeneratorInterceptor.java
/**
* Java dynamic Proxy-based interceptor for implementing factory generation.
*
* @see org.springmodules.xt.model.generator.factory.DynamicFactoryGenerator
*
* @author Sergio Bossa
From source file org.apache.avro.ipc.RestRequestor.java
/** * TODO: Document this */ public class RestRequestor implements InvocationHandler { private static final Logger LOG = LoggerFactory.getLogger(RestRequestor.class);
From source file org.apache.openejb.util.proxy.QueryProxy.java
public class QueryProxy implements InvocationHandler { private static final Logger LOGGER = Logger.getInstance(LogCategory.OPENEJB, QueryProxy.class); // keywords public static final String PERSIST_NAME = "save"; public static final String MERGE_NAME = "update";
From source file com.marvelution.bamboo.plugins.sonar.tasks.actions.admin.ConfigureSonarServers.java
/** * @author <a href="mailto:markrekveld@marvelution.com">Mark Rekveld</a> * * @since 1.2.0 */ @SuppressWarnings("unchecked")
From source file org.bytesoft.bytetcc.supports.springcloud.ext.CompensableFeignInterceptor.java
public class CompensableFeignInterceptor implements InvocationHandlerFactory, InvocationHandler, feign.RequestInterceptor, CompensableEndpointAware, ApplicationContextAware { static final String HEADER_TRANCACTION_KEY = "org.bytesoft.bytetcc.transaction"; static final String HEADER_PROPAGATION_KEY = "org.bytesoft.bytetcc.propagation"; private String identifier;
From source file com.qmetry.qaf.automation.ui.webdriver.ComponentListHandler.java
/** * com.qmetry.qaf.automation.ui.webdriver.extended.IsWebElementList.java * * @author chirag */ public class ComponentListHandler implements InvocationHandler {
From source file org.apache.olingo.ext.proxy.commons.AbstractInvocationHandler.java
abstract class AbstractInvocationHandler implements InvocationHandler { /** * Logger. */ protected static final Logger LOG = LoggerFactory.getLogger(AbstractInvocationHandler.class);
From source file com.moss.jaxwslite.Service.java
public class Service implements InvocationHandler { private final Log log = LogFactory.getLog(this.getClass()); private final HttpClient client; private final String url;
From source file cat.albirar.framework.dynabean.impl.DynaBeanImpl.java
/**
* A proxy for create dynamic beans from interfaces.
*
* For use with interfaces that represents a Java Bean. <br>
* <b>Use</b>
*
From source file com.netflix.spinnaker.clouddriver.aws.security.AmazonClientInvocationHandler.java
class AmazonClientInvocationHandler implements InvocationHandler { private static final Logger log = LoggerFactory.getLogger(AmazonClientInvocationHandler.class); static final ThreadLocal<Long> lastModified = new ThreadLocal<>();