Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse McConnell2011-06-17 14:43:12 +0000
committerJesse McConnell2011-06-17 14:43:12 +0000
commitffcd7804574ac8bef1905bae92afedd809fae555 (patch)
tree5c9cf7227eb1256c3454bfffa5aea139558bae6b
parent1b2189a488899db8a417bcf32bf7519b90e18410 (diff)
downloadorg.eclipse.jetty.project-ffcd7804574ac8bef1905bae92afedd809fae555.tar.gz
org.eclipse.jetty.project-ffcd7804574ac8bef1905bae92afedd809fae555.tar.xz
org.eclipse.jetty.project-ffcd7804574ac8bef1905bae92afedd809fae555.zip
[Bug 295832] update javadoc
git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@3397 7e9141cc-0065-0410-87d8-b60c137991c4
-rw-r--r--jetty-servlets/src/main/java/org/eclipse/jetty/servlets/ProxyServlet.java3
1 files changed, 3 insertions, 0 deletions
diff --git a/jetty-servlets/src/main/java/org/eclipse/jetty/servlets/ProxyServlet.java b/jetty-servlets/src/main/java/org/eclipse/jetty/servlets/ProxyServlet.java
index 8e8eb7adea..508421feae 100644
--- a/jetty-servlets/src/main/java/org/eclipse/jetty/servlets/ProxyServlet.java
+++ b/jetty-servlets/src/main/java/org/eclipse/jetty/servlets/ProxyServlet.java
@@ -38,6 +38,7 @@ import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.eclipse.jetty.client.HttpClient;
+import org.eclipse.jetty.client.HttpConnection;
import org.eclipse.jetty.client.HttpExchange;
import org.eclipse.jetty.continuation.Continuation;
import org.eclipse.jetty.continuation.ContinuationSupport;
@@ -71,6 +72,8 @@ import org.omg.CORBA._PolicyStub;
* <li>name - Name of Proxy servlet (default: "ProxyServlet"
* <li>maxThreads - maximum threads
* <li>maxConnections - maximum connections per destination
+ * <li>timeout - the period in ms the client will wait for a response from the proxied server
+ * <li>idleTimeout - the period in ms a connection to proxied server can be idle for before it is closed
* <li>HostHeader - Force the host header to a particular value
* <li>whiteList - comma-separated list of allowed proxy destinations
* <li>blackList - comma-separated list of forbidden proxy destinations

Back to the top