Annotation Interface SQLXMLFactory


@Target(METHOD) @Retention(RUNTIME) public @interface SQLXMLFactory
Indicates a method that creates a SQLXML instance for handling XML data in the database.

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

 @Dao
 public interface EmployeeDao {

     @SQLXMLFactory
     SQLXML createSQLXML();
 }
 
The method may throws following exceptions:
See Also: