* @throws TorqueException if the data cannot be deleted or saved.
*/
private void fillDateTimeTimestampWithPastEntry() throws TorqueException
{
DateTimeTimestampTypePeer.doDelete(new Criteria());
DateTimeTimestampType dateTimeTimestamp = new DateTimeTimestampType();
dateTimeTimestamp.setDateValue(
new GregorianCalendar(2000, 1, 1).getTime());
dateTimeTimestamp.setTimeValue(
new GregorianCalendar(2000, 1, 1).getTime());
dateTimeTimestamp.setTimestampValue(
new GregorianCalendar(2000, 1, 1).getTime());
dateTimeTimestamp.save();
}