org.ujoframework.orm.annot
Annotation Type Parameter


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

A parameter annotation of the stored procedure. The first property/parameter has allways the output type and it provides a result of the stored procedure. If prcedure does not have a return value, the property type must be Void. The next properties/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 outpue 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 outpue parameter of the stored procedure.

Default:
false


Copyright © 2010. All Rights Reserved.