fc8ddc01bdfb2da52ef0aa6cd0bd28f519878377
[controller.git] / opendaylight / netconf / config-netconf-connector / src / main / java / org / opendaylight / controller / netconf / confignetconfconnector / util / 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
9 package org.opendaylight.controller.netconf.confignetconfconnector.util;
10
11 import com.google.common.base.Preconditions;
12
13 import java.text.ParseException;
14 import java.text.SimpleDateFormat;
15 import java.util.Date;
16
17 public final class Util {
18
19     /**
20      * Used for date <-> xml serialization
21      */
22     private static final SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd");
23
24     public static String writeDate(final Date date) {
25         return dateFormat.format(date);
26     }
27
28     public static Date readDate(final String s) throws ParseException {
29         return dateFormat.parse(s);
30     }
31
32     public static void checkType(final Object value, final Class<?> clazz) {
33         Preconditions.checkArgument(clazz.isAssignableFrom(value.getClass()), "Unexpected type " + value.getClass()
34                 + " should be " + clazz + " of " + value);
35     }
36
37 }