01: package dinamica;
02:
03: /**
04: * Defines the interface to return a Recordset
05: * given a Recordset representing the input parameters
06: * <br><br>
07: * Creation date: 27/04/2005
08: * (c) 2005 Martin Cordova<br>
09: * This code is released under the LGPL license<br>
10: * Dinamica Framework - http://www.martincordova.com<br>
11: * @author Martin Cordova (dinamica@martincordova.com)
12: */
13: public interface IRecordsetProvider {
14:
15: public Recordset getRecordset(Recordset inputParams)
16: throws Throwable;
17:
18: }
|