Switch to Objects.requireNonNull
[mdsal.git] / binding / mdsal-binding-dom-codec / src / main / java / org / opendaylight / mdsal / binding / dom / codec / impl / MissingSchemaForClassException.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 package org.opendaylight.mdsal.binding.dom.codec.impl;
9
10 import static java.util.Objects.requireNonNull;
11
12 import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
13 import org.opendaylight.mdsal.binding.generator.util.BindingRuntimeContext;
14 import org.opendaylight.yangtools.yang.binding.Augmentation;
15
16 /**
17  * Thrown when Java Binding class was used in data for which codec does not have schema.
18  *
19  * <p>
20  * By serialization /  deserialization of this exception {@link #getBindingClass()} will return null.
21  */
22 public final class MissingSchemaForClassException extends MissingSchemaException {
23
24     private static final long serialVersionUID = 1L;
25
26     @SuppressFBWarnings("SE_TRANSIENT_FIELD_NOT_RESTORED")
27     private final transient Class<?> bindingClass;
28
29     private MissingSchemaForClassException(final Class<?> clz) {
30         super(String.format("Schema is not available for %s", clz));
31         this.bindingClass = requireNonNull(clz);
32     }
33
34     static MissingSchemaForClassException forClass(final Class<?> clz) {
35         return new MissingSchemaForClassException(clz);
36     }
37
38     public Class<?> getBindingClass() {
39         return bindingClass;
40     }
41
42     public static void check(final BindingRuntimeContext runtimeContext, final Class<?> bindingClass) {
43         final Object schema;
44         if (Augmentation.class.isAssignableFrom(bindingClass)) {
45             schema = runtimeContext.getAugmentationDefinition(bindingClass);
46         } else {
47             schema = runtimeContext.getSchemaDefinition(bindingClass);
48         }
49         if (schema == null) {
50             throw MissingSchemaForClassException.forClass(bindingClass);
51         }
52     }
53 }