* @param date the DFP {@code Date} object to convert to a Java {@code Date}
* @param timeZoneId the timezone of the date
* @return the DFP {@code Date} object as a Java {@code Date} in the timezone
*/
public static java.util.Date toDate(Date date, String timeZoneId) {
return DateTimeUtils.toDate(new DateTime(date, 0, 0, 0, timeZoneId));
}