cab4fe90e0f30da4c0f1b8a38be37a72fe8f25ea
[controller.git] / opendaylight / md-sal / sal-binding-broker / src / main / java / org / opendaylight / controller / sal / binding / codegen / impl / BrokerImplClassLoader.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
10 package org.opendaylight.controller.sal.binding.codegen.impl;
11
12 import org.eclipse.xtext.xbase.lib.Exceptions;
13
14 @SuppressWarnings("all")
15 public class BrokerImplClassLoader extends ClassLoader {
16   private final ClassLoader spiClassLoader;
17
18   public BrokerImplClassLoader(final ClassLoader model, final ClassLoader spi) {
19     super(model);
20     this.spiClassLoader = spi;
21   }
22
23   public Class<? extends Object> loadClass(final String name) throws ClassNotFoundException {
24     try {
25       return super.loadClass(name);
26     } catch (ClassNotFoundException e) {
27         return this.spiClassLoader.loadClass(name);
28     }
29   }
30 }