Annotation Interface Procedure
Annotation to declare JPA 2.1 stored procedure mappings directly on repository methods.
- Since:
- 1.6
- Author:
- Thomas Darimont, Oliver Gierke, Christoph Strobl, Gabriel Basilio
-
Optional Element Summary
Modifier and TypeOptional ElementDescriptionThe name of the procedure in the EntityManager - defaults to""
.The name of the outputParameter, defaults to""
.The name of the procedure in the database, defaults to""
.boolean
Whether the procedure returns a Ref Cursor from the database - defaults tofalse
.The name of the procedure in the database, defaults to""
.
-
Element Details
-
value
String valueThe name of the procedure in the database, defaults to""
. Short form forprocedureName()
.- Default:
- ""
-
procedureName
String procedureNameThe name of the procedure in the database, defaults to""
.- Default:
- ""
-
name
String nameThe name of the procedure in the EntityManager - defaults to""
.- Default:
- ""
-
outputParameterName
String outputParameterNameThe name of the outputParameter, defaults to""
.- Default:
- ""
-
refCursor
boolean refCursorWhether the procedure returns a Ref Cursor from the database - defaults tofalse
.- Default:
- false
-