Merge "BUG 1839 - HTTP delete of non existing data"
[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     private Util() {
17     }
18     /**
19      * Used for date <-> xml serialization
20      */
21     private static final SimpleDateFormat DATE_FORMAT = new SimpleDateFormat(
22             "yyyy-MM-dd");
23
24     public static String writeDate(Date date) {
25         return DATE_FORMAT.format(date);
26     }
27
28     public static Date readDate(String s) throws ParseException {
29         return DATE_FORMAT.parse(s);
30     }
31 }