Package com.google.opengse.classloader

Examples of com.google.opengse.classloader.JasperHack


      ClassLoader classLoader) throws WebAppConfigurationException {
    if (classLoader instanceof URLClassLoader) {
      return (URLClassLoader) classLoader;
    }
    if (classLoader instanceof JasperHack) {
      JasperHack ugly = (JasperHack) classLoader;
      URL[] classLoaderUrls = null;
      try {
        classLoaderUrls = ugly.getUrls();
      } catch (IOException ex) {
        throw new WebAppConfigurationException(ex);
      }
      URLClassLoader whatJasperExpects =
          new URLClassLoader(classLoaderUrls, classLoader);
View Full Code Here

TOP

Related Classes of com.google.opengse.classloader.JasperHack

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.