@Target(value=TYPE) @Retention(value=RUNTIME) @Repeatable(value=NamedStoredFunctionQueries.class) public @interface NamedStoredFunctionQuery
Modifier and Type | Required Element and Description |
---|---|
String |
functionName
(Required) The name of the stored function.
|
String |
name
(Required) Unique name that references this stored function query.
|
StoredProcedureParameter |
returnParameter
(Required) Defines the return value of the stored function.
|
Modifier and Type | Optional Element and Description |
---|---|
boolean |
callByIndex
(Optional) Defines if the stored procedure should be called by index or by name.
|
jakarta.persistence.QueryHint[] |
hints
(Optional) Query hints.
|
StoredProcedureParameter[] |
parameters
(Optional) Defines the parameters to the stored function.
|
String |
resultSetMapping
(Optional) The name of the SQLResultMapping.
|
public abstract String name
public abstract String functionName
public abstract StoredProcedureParameter returnParameter
public abstract String resultSetMapping
public abstract boolean callByIndex
public abstract StoredProcedureParameter[] parameters
Copyright © 2007–2021 Eclipse.org - EclipseLink Project. All rights reserved.