Fixed for bug 1168 : Issue while update subnet
[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 package org.opendaylight.controller.sal.binding.codegen.impl;
10
11 public class BrokerImplClassLoader extends ClassLoader {
12     private final ClassLoader spiClassLoader;
13
14     public BrokerImplClassLoader(final ClassLoader model, final ClassLoader spi) {
15         super(model);
16         this.spiClassLoader = spi;
17     }
18
19     @Override
20     public Class<? extends Object> loadClass(final String name) throws ClassNotFoundException {
21         try {
22             return super.loadClass(name);
23         } catch (ClassNotFoundException e) {
24             return this.spiClassLoader.loadClass(name);
25         }
26     }
27 }