org.ujorm.orm.annot
Annotation Type Parameter


@Retention(value=RUNTIME)
@Target(value=FIELD)
public @interface Parameter

A parameter annotation of the stored procedure. The first key/parameter has always the output type and it provides a result of the stored procedure. If prcedure does not have a return value, the key type must be Void. The next keys/parameters have an input type by default, there is possible to change this type by this annotations.

See Also:
Procedure

Optional Element Summary
 boolean input
          An input parameter of the stored procedure.
 boolean output
          An output parameter of the stored procedure.
 

input

public abstract boolean input
An input parameter of the stored procedure.

Default:
false

output

public abstract boolean output
An output parameter of the stored procedure.

Default:
false


Copyright 2013, Pavel Ponec