f2f2b0c6c4111afc4c69a11ce5587230e5b0685c
[mdsal.git] / yanglib / mdsal-yanglib-rfc8525 / src / main / java / org / opendaylight / mdsal / yanglib / rfc8525 / SimpleStrategy.java
1 /*
2  * Copyright (c) 2019 PANTHEON.tech s.r.o. 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.yanglib.rfc8525;
9
10 import org.opendaylight.mdsal.binding.generator.api.ClassLoadingStrategy;
11 import org.opendaylight.mdsal.binding.model.api.Type;
12
13 final class SimpleStrategy implements ClassLoadingStrategy {
14     static final SimpleStrategy INSTANCE = new SimpleStrategy();
15
16     @Override
17     public Class<?> loadClass(final Type type) throws ClassNotFoundException {
18         return loadClass(type.getFullyQualifiedName());
19     }
20
21     @Override
22     public Class<?> loadClass(final String fullyQualifiedName) throws ClassNotFoundException {
23         return SimpleStrategy.class.getClassLoader().loadClass(fullyQualifiedName);
24     }
25 }