Remove yang-test
[controller.git] / opendaylight / config / config-manager-facade-xml / src / main / java / org / opendaylight / controller / config / facade / xml / util / Util.java
1 /*
2  * Copyright (c) 2015 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.config.facade.xml.util;
10
11 import com.google.common.base.Preconditions;
12
13 public final class Util {
14
15     private Util() {
16     }
17
18     public static void checkType(final Object value, final Class<?> clazz) {
19         Preconditions.checkArgument(clazz.isAssignableFrom(value.getClass()),
20                 "Unexpected type " + value.getClass() + " should be " + clazz + " of " + value);
21     }
22 }