Package com.google.apphosting.utils.config

Examples of com.google.apphosting.utils.config.ClassPathBuilder


  /**
   * Gets all of the URLs that should be added to the classpath for an
   * application located at {@code root}.
   */
  protected URL[] getClassPathForApp(File root) {
    ClassPathBuilder classPathBuilder =
        new ClassPathBuilder(appEngineWebXml.getClassLoaderConfig());

    classPathBuilder.addUrls(SdkImplInfo.getAgentRuntimeLibs());

    classPathBuilder.addUrls(userCodeClasspathManager.getUserCodeClasspath(root));
    classPathBuilder.addUrls(SdkImplInfo.getUserJspLibs());
    classPathBuilder.addUrls(SdkImplInfo.getWebApiToolLibs());
    return getUrls(classPathBuilder);
  }
View Full Code Here

TOP

Related Classes of com.google.apphosting.utils.config.ClassPathBuilder

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.