Package com.github.marschall.storedprocedureproxy.annotations
Contains annotations to that provide additional information about a
stored procedure in addition of what can be deduced from a Java
method declaration.
-
Annotation Types Summary Annotation Type Description FetchSize Allows manual control over the fetch size.InOutParameter Signals that the procedure uses an inout parameter rather than an out parameter, a return value or result set.Namespace Defines the namespace of a stored procedure.OutParameter Signals that the procedure uses an out parameter rather than a return value or result set.ParameterName Defines the name of an in parameter.ParameterType Defines the SQL type of an in parameter.ProcedureName Defines the name of a stored procedure.ReturnValue Signals that the procedure uses a return value rather than an out parameter or result set.Schema Defines the name of a database schema.TypeName Defines the name of a type.