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

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


    Iterator<XmlParser.Node> nodeIter = getNodeIterator(node, "handler");
    while (nodeIter.hasNext()) {
      XmlParser.Node subNode = nodeIter.next();
      String file = trim(subNode.getAttribute("file"));
      String errorCode = trim(subNode.getAttribute("error-code"));
      appEngineWebXml.addErrorHandler(new ErrorHandler(file, errorCode));
    }
  }
View Full Code Here

TOP

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

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.