Examples of DispatchEntry


Examples of com.google.apphosting.utils.config.DispatchXml.DispatchEntry

    public void setModule(String module) {
      this.module = module;
    }

    DispatchEntry asDispatchEntry() {
      return new DispatchEntry(url, module);
    }
View Full Code Here

Examples of com.google.apphosting.utils.config.DispatchXml.DispatchEntry

            }
          } else {
            throwUnsupportedTag(node.getTag(), DISPATCH_TAG);
          }
          if (url != null && module != null) {
            dispatchXmlBuilder.addDispatchEntry(new DispatchEntry(url, module));
            url = null;
            module = null;
            dispatchComplete = true;
          }
          break;
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.