public static JobView of(Job<?, ?> job, RelativeLocation location) {
return new JobView(job, new BuildAugmentor(), location, new Date());
}
public static JobView of(Job<?, ?> job, Date systemTime) {
return new JobView(job, new BuildAugmentor(), RelativeLocation.of(job), systemTime);
}