JETTY-1442 add _hostHeader setter for ProxyRule

This commit is contained in:
Jan Bartel 2011-10-31 14:43:20 +11:00
parent e088acc559
commit 56c1ddf117
1 changed files with 10 additions and 0 deletions

View File

@ -484,4 +484,14 @@ public class ProxyRule extends PatternRule
_connectorType = connectorType; _connectorType = connectorType;
} }
public String getHostHeader()
{
return _hostHeader;
}
public void setHostHeader(String hostHeader)
{
_hostHeader = hostHeader;
}
} }