com.tinkerpop.rexster.extension.ExtensionApi 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.
package com.tinkerpop.rexster.extension;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
/**
* Represents one parameter in the API of the extension.
*
* @author Stephen Mallette (http://stephen.genoprime.com)
*/
@Retention(RetentionPolicy.RUNTIME)
public @interface ExtensionApi {
String parameterName();
String description() default "";
}