@PostConstruct
private void ps() throws Exception {
System.out.printf("Batchlet1 PostConstruct of %s%n", this);
if (jobContext == null || stepContext == null || date == null) {
throw new BatchRuntimeException("Some fields are not initialized: jobContext=" + jobContext +
", stepContext=" + stepContext + ", date=" + date);
}
addToJobExitStatus("Batchlet1.ps");
}