/* (non-Javadoc)
* @see org.apache.oozie.BaseEngine#dryrunSubmit(org.apache.hadoop.conf.Configuration, boolean)
*/
@Override
public String dryrunSubmit(Configuration conf, boolean startJob) throws BundleEngineException {
BundleSubmitXCommand submit = new BundleSubmitXCommand(true, conf, getAuthToken());
try {
String jobId = submit.call();
return jobId;
}
catch (CommandException ex) {
throw new BundleEngineException(ex);
}