com.tinkerpop.rexster.extension.RexsterContext Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rexster-core Show documentation
Show all versions of rexster-core Show documentation
Core components for extending Rexster.
The newest version!
package com.tinkerpop.rexster.extension;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Marks a parameter on an extension method as one that should receive attention from Rexster by
* plugging in values that match the expected types from the request. This annotation can be
* applied to these types: edge/vertex/graph (dependent on the ExtensionPoint),
* and RexsterResourceContext.
*
* @author Stephen Mallette (http://stephen.genoprime.com)
*/
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.PARAMETER)
public @interface RexsterContext {
}