/** * MailArchiver is an application that provides services for storing and managing e-mail messages through a Web Services SOAP interface. * Copyright (C) 2012 Marcio Andre Scholl Levien and Fernando Alberto Reuter Wendt and Jose Ronaldo Nogueira Fonseca Junior * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see . */ /******************************************************************************\ * * This product was developed by * * SERVIÇO FEDERAL DE PROCESSAMENTO DE DADOS (SERPRO), * * a government company established under Brazilian law (5.615/70), * at Department of Development of Porto Alegre. * \******************************************************************************/ package serpro.mailarchiver.domain.metaarchive; import java.text.SimpleDateFormat; import java.util.Date; import javax.jdo.JDOHelper; import javax.jdo.annotations.NotPersistent; import javax.jdo.annotations.PersistenceCapable; import serpro.mailarchiver.util.Logger; @PersistenceCapable public class DateTimeField extends Field { /* * "Date", "Resent-Date" */ @NotPersistent private static final Logger log = Logger.getLocalLogger(); //**** P E R S I S T E N T **** private Date date; //***************************** public final Date getDate() { return date; } public final void setDate(Date date) { this.date = date; } //-------------------------------------------------------------------------- @Override final void dumpTree(StringBuilder sb, String pad) { sb.append(toString(pad + " ")); } @NotPersistent private static final SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss.SSS Z"); @Override final String toString(String pad) { String idx = (getEntity() == null) ? "" : ("[" + String.valueOf(getEntityIdx()) + "]"); return String.format( "DateTimeField %1$s%n" + "%2$sjdoState: %3$s%n" + "%2$soid: %4$s%n" + "%2$shash: %5$x%n" + "%2$sname: %6$s%n" + "%2$sdate: %7$s%n" + "%2$svalid: %8$b" , idx , pad , JDOHelper.getObjectState(this) , getOid() , hashCode() , getName() , (getDate() == null) ? null : dateFormat.format(getDate()) , isValid()); } }