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

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.

There is a newer version: 4.0.1.Final
Show newest version
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