Annotation Interface NClobFactory


@Target(METHOD) @Retention(RUNTIME) public @interface NClobFactory
Indicates to create a NClob instance.

The annotated method must be a member of a Dao annotated interface.

 @Dao
 public interface EmployeeDao {

     @NClobFactory
     NClob createNClob();
 }
 
The annotated method may throw following exceptions:
See Also: