org.neo4j.procedure.UserFunction Maven / Gradle / Ivy
/*
* Copyright (c) "Neo4j"
* Neo4j Sweden AB [http://neo4j.com]
*
* This file is part of Neo4j.
*
* Neo4j is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see .
*/
package org.neo4j.procedure;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
import org.neo4j.annotations.api.PublicApi;
/**
* Declares a method as a Function, meaning the method can be called from the
* cypher query language.
*
* Functions accept input, use that input to perform work, and then return a value. The work performed usually
* involves one or more resources, such as a {@link org.neo4j.graphdb.GraphDatabaseService}. Functions are read-only, i.e
* can't update neither the graph nor update schema.
*
*
Input declaration
* A function can accept input arguments, which is defined in the arguments to the
* annotated method. Each method argument must be a valid Function input type, and
* each must be annotated with the {@link Name} annotation, declaring the input name.
*
* Valid input types are as follows:
*
*
* - {@link String}
* - {@link Long} or {@code long}
* - {@link Double} or {@code double}
* - {@link Number}
* - {@link Boolean} or {@code boolean}
* - {@link org.neo4j.graphdb.Node}
* - {@link org.neo4j.graphdb.Relationship}
* - {@link org.neo4j.graphdb.Path}
* - {@link java.util.Map} with key {@link String} and value of any type in this list, including {@link java.util.Map}
* - {@link java.util.List} with element type of any type in this list, including {@link java.util.List}
* - {@link Object}, meaning any valid input types above
*
*
* Output declaration
* A function must always return a single value.
*
* Valid return types are as follows:
*
*
* - {@link String}
* - {@link Long} or {@code long}
* - {@link Double} or {@code double}
* - {@link Number}
* - {@link Boolean} or {@code boolean}
* - {@link org.neo4j.graphdb.Node}
* - {@link org.neo4j.graphdb.Relationship}
* - {@link org.neo4j.graphdb.Path}
* - {@link java.util.Map} with key {@link String} and value of any type in this list, including {@link java.util.Map}
* - {@link java.util.List} of elements of any valid field type, including {@link java.util.List}
* - {@link Object}, meaning any of the valid field types above
*
*
* Resource declarations
* The function method itself can contain arbitrary Java code - but in order to work with the underlying graph,
* it must have access to the graph API. This is done by declaring fields in the function class, and annotating
* them with the {@link Context} annotation. Fields declared this way are automatically injected with the
* requested resource. This is how functions gain access to APIs to do work with.
*
* All fields in the class containing the function declaration must either be static; or it must be public, non-final
* and annotated with {@link Context}.
*
* Resources supported by default are as follows:
*
* - {@link org.neo4j.graphdb.GraphDatabaseService}
* - {@link org.neo4j.logging.Log}
* - {@link org.neo4j.procedure.TerminationGuard}
*
*
* Lifecycle and state
* The class that declares your function method may be re-instantiated before each call. Because of this,
* no regular state can be stored in the fields of the function.
*
* If you want to maintain state between invocations to your procedure, simply use a static field. Note that
* procedures may be called concurrently, meaning you need to take care to ensure the state you store in
* static fields can be safely accessed by multiple callers simultaneously.
*/
@Target( ElementType.METHOD )
@Retention( RetentionPolicy.RUNTIME )
@PublicApi
public @interface UserFunction
{
/**
* The namespace and name for the function, as a period-separated
* string. For instance {@code myfunctions.myfunction}.
*
* If this is left empty, the name defaults to the package name of
* the class the procedure is declared in, combined with the method
* name. Notably, the class name is omitted.
*
* @return the namespace and procedure name
*/
String value() default "";
/**
* Synonym for {@link #value()}
* @return the namespace and procedure name.
*/
String name() default "";
/**
* When deprecating a function it is useful to indicate a possible
* replacement procedure that clients might show in warnings.
* @return a string representation of the replacement procedure.
*/
String deprecatedBy() default "";
}