1
2
3
4 package org.flowfuse.base.util;
5
6 import org.apache.commons.logging.Log;
7 import org.apache.commons.logging.LogFactory;
8
9 import java.util.Date;
10
11 /***
12 * @author <a href="stefan@flowfuse.org">Stefan Kleineikenscheidt</a>,
13 * Flowfuse.org
14 * @version $Id: DateUtil.java,v 1.1 2005/11/20 15:02:26 skleinei Exp $
15 */
16 public class DateUtil {
17
18 /***
19 * RCS ID
20 */
21 public final static String rcsid = "$Id: DateUtil.java,v 1.1 2005/11/20 15:02:26 skleinei Exp $";
22
23 /***
24 * Logger
25 */
26 protected final Log logger = LogFactory.getLog(this.getClass());
27
28 public static String getPrettyDate(Date date) {
29
30 return date.toString();
31 }
32
33 }
34
35