package com.ximple.eofms.jobs.context;
|
|
import org.apache.commons.logging.Log;
|
|
public class OracleUpgradeJobContext extends AbstractOracleJobContext
|
{
|
public void startTransaction()
|
{
|
}
|
|
public void commitTransaction()
|
{
|
}
|
|
public void rollbackTransaction()
|
{
|
}
|
|
protected Log getLogger()
|
{
|
return null; //To change body of implemented methods use File | Settings | File Templates.
|
}
|
}
|