org.eclipse.persistence.annotations
@Target(value=TYPE) @Retention(value=RUNTIME) public @interface NamedStoredProcedureQuery
org.eclipse.persistence.annotations.StoredProcedureParameter.
Modifier and Type | Required Element and Description |
---|---|
String |
name
(Required) Unique name that references this stored procedure query.
|
String |
procedureName
(Required) The name of the stored procedure.
|
Modifier and Type | Optional Element and Description |
---|---|
javax.persistence.QueryHint[] |
hints
(Optional) Query hints.
|
StoredProcedureParameter[] |
parameters
(Optional) Defines arguments to the stored procedure.
|
Class |
resultClass
(Optional) Refers to the class of the result.
|
String |
resultSetMapping
(Optional) The name of the SQLResultMapping.
|
boolean |
returnsResultSet
(Optional) Whether the query should return a result set.
|
public abstract String name
public abstract String procedureName
public abstract javax.persistence.QueryHint[] hints
public abstract Class resultClass
public abstract String resultSetMapping
public abstract boolean returnsResultSet
public abstract StoredProcedureParameter[] parameters