org.enodeframework.infrastructure.MethodInvocation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of enode Show documentation
Show all versions of enode Show documentation
The enodeframework core implementation.
package org.enodeframework.infrastructure;
import java.lang.invoke.MethodHandle;
import java.lang.reflect.Method;
public interface MethodInvocation {
Method getMethod();
void setMethod(Method method);
void setHandlerType(Class> handlerType);
void setMethodHandle(MethodHandle methodHandle);
}