JETTY-1442 add _hostHeader setter for ProxyRule
This commit is contained in:
parent
e088acc559
commit
56c1ddf117
|
@ -483,5 +483,15 @@ public class ProxyRule extends PatternRule
|
||||||
{
|
{
|
||||||
_connectorType = connectorType;
|
_connectorType = connectorType;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public String getHostHeader()
|
||||||
|
{
|
||||||
|
return _hostHeader;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setHostHeader(String hostHeader)
|
||||||
|
{
|
||||||
|
_hostHeader = hostHeader;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue