DBConnectionContext _cc;
// Your class constructor.
public OrderProcessor(DBConnectionContext cc) {
_cc = cc;
}
// The method used for the handle_DownloadData event.
public void handleDownload() throws SQLException {
// Get the DownloadData for the current synchronization.
DownloadData my_dd = _cc.getDownloadData();
// ...
}