forked from geodmms/xdgnjobs

?? ?
2008-08-22 961a6df7bdd2877daff6b64e6d140684717feb4b
xdgnjobs/ximple-spatialjob/src/main/java/com/ximple/eofms/jobs/OracleUpgradeBlob2UDTJob.java
@@ -28,6 +28,7 @@
        // The name is defined in the job definition
        String jobName = jobDetail.getName();
        String targetSchemaName = null;
        // Log the time the job started
        logger.info(jobName + " fired at " + new Date());
@@ -38,7 +39,7 @@
            throw new JobExecutionException("Cannot connect source oracle database.");
        }
        AbstractOracleJobContext jobContext = prepareJobContext(_filterPath);
        AbstractOracleJobContext jobContext = prepareJobContext(targetSchemaName, _filterPath);
        jobContext.setSourceDataStore(getSourceDataStore());
        try
@@ -58,7 +59,7 @@
        return logger;
    }
    protected AbstractOracleJobContext prepareJobContext(String filterPath)
    protected AbstractOracleJobContext prepareJobContext(String targetSchemaName, String filterPath)
    {
        return new OracleUpgradeJobContext();
    }