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.
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