@Target(value={})
@Retention(value=RUNTIME)
public @interface StoredProcedureParameter
StoredProcedureQuery
,
ParameterMode
Modifier and Type | Required Element and Description |
---|---|
java.lang.Class |
type
JDBC type of the paramter.
|
Modifier and Type | Optional Element and Description |
---|---|
ParameterMode |
mode
Specifies whether the parameter is an IN, INOUT, OUT, or REF_CURSOR parameter.
|
java.lang.String |
name
The name of the parameter as defined by the stored procedure in the database.
|
public abstract java.lang.Class type
public abstract java.lang.String name
public abstract ParameterMode mode