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

com.tinkerpop.frames.modules.gremlingroovy.GremlinGroovyModule 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.gremlingroovy;

import com.tinkerpop.frames.FramedGraphConfiguration;
import com.tinkerpop.frames.annotations.gremlin.GremlinGroovyAnnotationHandler;
import com.tinkerpop.frames.modules.AbstractModule;

/**
 * Adds @GremlinGroovy support to the framed graph.
 * @author Bryn Cooke
 *
 */
public class GremlinGroovyModule extends AbstractModule {
	private GremlinGroovyAnnotationHandler handler = new GremlinGroovyAnnotationHandler(); //Factory will share handler.

	@Override
	public void doConfigure(FramedGraphConfiguration config) {
		config.addMethodHandler(handler);
		
	}


}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy