| java.lang.Object org.cougaar.mlm.plugin.ldm.QueryHandler org.cougaar.mlm.plugin.ldm.SQLOplanQueryHandler org.cougaar.mlm.plugin.ldm.OplanQueryHandler
OplanQueryHandler | public class OplanQueryHandler extends SQLOplanQueryHandler (Code) | | Reads oplan info from a database table. Assumes it's being invoked on
behalf of SQLOplanPlugin. Updates oplan maintained by SQLOplanPlugin.
|
Method Summary | |
public void | endQuery() this method is called when a query is complete,
afer the last call to processRow. | public String | getQuery() Construct and return an SQL query to be used by the Database engine. | public void | processRow(Object[] rowData) Process a single row in a result set,
doing whatever is required. | public void | startQuery() this method is called before a query is started,
before even getQuery. |
endQuery | public void endQuery()(Code) | | this method is called when a query is complete,
afer the last call to processRow. The default method is empty
but may be overridden by subclasses.
|
getQuery | public String getQuery()(Code) | | Construct and return an SQL query to be used by the Database engine.
Subclasses are required to implement this method.
|
processRow | public void processRow(Object[] rowData)(Code) | | Process a single row in a result set,
doing whatever is required.
|
startQuery | public void startQuery()(Code) | | this method is called before a query is started,
before even getQuery. The default method is empty
but may be overridden.
|
|
|