com.tinkerpop.frames.annotations.gremlin.GremlinGroovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of windup-frames Show documentation
Show all versions of windup-frames Show documentation
Windup Frames is an extension of the upstream Frames project, with tools to ease debugging and integration within windup.
package com.tinkerpop.frames.annotations.gremlin;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Use a Gremlin Groovy script to determine a vertex-to-vertex adjacency.
*
* @author Marko A. Rodriguez (http://markorodriguez.com)
*/
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD)
public @interface GremlinGroovy {
public String value();
public boolean frame() default true;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy