All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.litongjava.tio.http.common.RequestDispatcher Maven / Gradle / Ivy

package com.litongjava.tio.http.common;

public class RequestDispatcher {
  private String path;

  public RequestDispatcher(String path) {
    this.path = path;
  }

  public void forward(HttpRequest request, HttpResponse response) throws Exception {
    request.forward(path);
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy