30c7919c1a3cd89090ab168d8b848cb8e54b2af9
[controller.git] / opendaylight / config / yang-jmx-generator / src / main / java / org / opendaylight / controller / config / yangjmxgenerator / attribute / Util.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 package org.opendaylight.controller.config.yangjmxgenerator.attribute;
9
10 import java.text.ParseException;
11 import java.text.SimpleDateFormat;
12 import java.util.Date;
13
14 final class Util {
15
16     /**
17      * Used for date <-> xml serialization
18      */
19     private static final SimpleDateFormat dateFormat = new SimpleDateFormat(
20             "yyyy-MM-dd");
21
22     public static String writeDate(Date date) {
23         return dateFormat.format(date);
24     }
25
26     public static Date readDate(String s) throws ParseException {
27         return dateFormat.parse(s);
28     }
29 }