Add ability to get yang sources from SchemaContext.
[yangtools.git] / yang / yang-common / src / main / java / org / opendaylight / yangtools / yang / common / SimpleDateFormatUtil.java
1 /*
2  * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8
9 package org.opendaylight.yangtools.yang.common;
10
11 import java.text.SimpleDateFormat;
12
13 public class SimpleDateFormatUtil {
14
15     private static final ThreadLocal<SimpleDateFormat> REVISION_FORMAT = new ThreadLocal<SimpleDateFormat>() {
16
17         protected SimpleDateFormat initialValue() {
18             return new SimpleDateFormat("yyyy-MM-dd");
19         };
20
21         public void set(SimpleDateFormat value) {
22             throw new UnsupportedOperationException();
23         };
24
25     };
26
27     public static SimpleDateFormat getRevisionFormat() {
28         return REVISION_FORMAT.get();
29     }
30 }