@Target(value={}) @Retention(value=RUNTIME) public @interface StoredProcedureParameter
NamedStoredProcedureQuery
Modifier and Type | Required Element and Description |
---|---|
String |
queryParameter
(Required) The query parameter name.
|
Modifier and Type | Optional Element and Description |
---|---|
Direction |
direction
Deprecated.
|
int |
jdbcType
(Optional) The JDBC type code, this is dependent on the type returned
from the procedure.
|
String |
jdbcTypeName
(Optional) The JDBC type name, this may be required for ARRAY or
STRUCT types.
|
jakarta.persistence.ParameterMode |
mode
(Optional) The direction of the stored procedure parameter.
|
String |
name
(Optional) Stored procedure parameter name.
|
boolean |
optional
(Optional) Define if the parameter is required, or optional and defaulted by the procedure.
|
Class |
type
(Optional) The type of Java class desired back from the procedure,
this is dependent on the type returned from the procedure.
|
public abstract String queryParameter
public abstract jakarta.persistence.ParameterMode mode
public abstract String name
public abstract boolean optional
public abstract Class type
public abstract int jdbcType
public abstract String jdbcTypeName
Copyright © 2007–2020 Eclipse.org - EclipseLink Project. All rights reserved.