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

com.khubla.pragmatach.plugin.cluster.ControllerMethodHandler Maven / Gradle / Ivy

package com.khubla.pragmatach.plugin.cluster;

import java.lang.reflect.Method;

import javassist.util.proxy.MethodHandler;

/**
 * @author tome
 */
public class ControllerMethodHandler implements MethodHandler {
   @Override
   public Object invoke(Object self, Method thisMethod, Method proceed, Object[] args) throws Throwable {
      return proceed.invoke(self, args);
   }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy