Package com.google.apphosting.utils.config.AppEngineWebXml

Examples of com.google.apphosting.utils.config.AppEngineWebXml.PrioritySpecifierEntry


      processClassPathPrioritySpecifier(nodeIter.next(), config);
    }
  }

  private void processClassPathPrioritySpecifier(Node node, ClassLoaderConfig config) {
    PrioritySpecifierEntry entry = new PrioritySpecifierEntry();
    entry.setFilename(node.getAttribute("filename"));
    entry.setPriority(node.getAttribute("priority"));
    entry.checkClassLoaderConfig();
    config.add(entry);
  }
View Full Code Here

TOP

Related Classes of com.google.apphosting.utils.config.AppEngineWebXml.PrioritySpecifierEntry

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.