## Motivation Having access to the java.time API for the `processingDate` without additional date conversions. ## Input `processingDate` of `java.util.Date` type. ## Output - `processingDate` of `java.time.LocalDateTime` type. - Examples code in the "Time Management" chapter updated - https://github.com/ypg-data/eigenflow/pull/16#discussion_r50699912 ## Test ``` val aStage = AnyStage withContext { context: ProcessContext => context.processingDate // check if this is actually java.time.LocalDateTime } ```