Resolve Bug:445 Remove freemarker from config code generator.
[controller.git] / opendaylight / md-sal / sal-binding-broker / src / main / java / org / opendaylight / controller / sal / binding / codegen / impl / BrokerImplClassLoader.xtend
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 package org.opendaylight.controller.sal.binding.codegen.impl
9
10 import java.lang.ClassLoader
11
12 class BrokerImplClassLoader extends ClassLoader {
13
14     val ClassLoader spiClassLoader
15     
16     public new(ClassLoader model, ClassLoader spi) {
17         super(model)
18         spiClassLoader = spi;
19     }
20
21     override public loadClass(String name) throws ClassNotFoundException {
22         try {
23             return super.loadClass(name);
24         } catch (ClassNotFoundException e) {
25             return spiClassLoader.loadClass(name);
26         }
27     }
28
29 }