package com.ximple.eofms.jobs.context;
|
|
import org.apache.commons.logging.Log;
|
|
public class OracleUpgradeJobContext extends AbstractOracleJobContext {
|
public OracleUpgradeJobContext(boolean profileMode, boolean useTransform) {
|
super(profileMode, useTransform);
|
}
|
|
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.
|
}
|
}
|