1 /*
2 * Copyright (C) The Apache Software Foundation. All rights reserved.
3 *
4 * This software is published under the terms of the Apache Software License
5 * version 1.1, a copy of which has been included with this distribution in
6 * the LICENSE file.
7 */
8 package org.apache.james.util;
9
10 import java.util.Locale;
11
12 /***
13 * A thread-safe date formatting class to produce dates formatted in accord with the
14 * specifications of section 3.2 of RFC 2980.
15 *
16 * @author Peter M. Goldstein <farsight@alum.mit.edu>
17 */
18 public class RFC2980DateFormat extends SynchronizedDateFormat {
19
20 /***
21 * Constructor for RFC2980DateFormat
22 */
23 public RFC2980DateFormat() {
24 super("yyyyMMddHHmmss", Locale.ENGLISH);
25 }
26 }
This page was automatically generated by Maven