* @return Job a simple batch job consisting of its step names.
*/
@Override
public Job getJob(final String name) throws NoSuchJobException {
if (!getJobNames().contains(name)) {
throw new NoSuchJobException(name);
}
// Return a simple job that currently supports
// - Get job name
// - Get step names of the given job
SimpleJob job = new SimpleJob(name) {