com.tinkerpop.frames.modules.javahandler.JavaHandlerFactory Maven / Gradle / Ivy
Go to download
Windup Frames is an extension of the upstream Frames project, with tools to ease debugging and integration within windup.
package com.tinkerpop.frames.modules.javahandler;
/**
* {@link JavaHandlerModule} uses this interface to create the concrete classes that will handle the method calls.
* @author Bryn Cooke
*/
public interface JavaHandlerFactory {
/**
* @param handlerClass The class to create.
* @return The created class.
* @throws InstantiationException
* @throws IllegalAccessException
*/
public T create(Class handlerClass) throws InstantiationException, IllegalAccessException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy