* missing.
* @throws JobExecutionException If the job throws an exception.
*/
public void initializeJob(Serialized<ParallelizableJob> job) throws ClassNotFoundException, JobExecutionException {
this.classLoader = new StrategyClassLoader(classManager, JobServer.class.getClassLoader());
this.job = new JobExecutionWrapper(job.deserialize(classLoader));
this.worker = new Serialized<TaskWorker>(this.job.worker());
notifyStatusChanged("");
this.workingDirectory.mkdir();
this.job.setHostService(this);