@@ -54,6 +54,8 @@ public final class SiteConfig
5454
5555 private final String proxyAllowHttpJobTypes ;
5656
57+ private final String egressSites ;
58+
5759 private final SiteTrustType trustType ;
5860
5961 private final String keyCertPem ;
@@ -89,12 +91,13 @@ public final class SiteConfig
8991 private final Integer baseSampleRate ;
9092
9193 SiteConfig ( String id , String uri , String user , String proxyHost , Integer proxyPort , String proxyUser ,
92- String proxyAllowHttpJobTypes , SiteTrustType trustType , String keyCertPem , String serverCertPem ,
93- Integer requestTimeoutSeconds , Integer connectionPoolTimeoutSeconds , Integer maxConnections ,
94- Integer maxPerRoute , final ConnectionConfig connectionConfig , final SocketConfig socketConfig ,
95- final RequestConfig requestConfig , HttpClientContext clientContextPrototype ,
96- boolean ignoreHostnameVerification , Map <String , Object > attributes , Boolean metricEnabled ,
97- String honeycombDataset , String honeycombWriteKey , Integer baseSampleRate )
94+ String proxyAllowHttpJobTypes , String egressSites , SiteTrustType trustType , String keyCertPem ,
95+ String serverCertPem , Integer requestTimeoutSeconds , Integer connectionPoolTimeoutSeconds ,
96+ Integer maxConnections , Integer maxPerRoute , final ConnectionConfig connectionConfig ,
97+ final SocketConfig socketConfig , final RequestConfig requestConfig ,
98+ HttpClientContext clientContextPrototype , boolean ignoreHostnameVerification ,
99+ Map <String , Object > attributes , Boolean metricEnabled , String honeycombDataset ,
100+ String honeycombWriteKey , Integer baseSampleRate )
98101 {
99102 this .id = id ;
100103 this .uri = uri ;
@@ -103,6 +106,7 @@ public final class SiteConfig
103106 this .proxyPort = proxyPort ;
104107 this .proxyUser = proxyUser ;
105108 this .proxyAllowHttpJobTypes = proxyAllowHttpJobTypes ;
109+ this .egressSites = egressSites ;
106110 this .trustType = trustType ;
107111 this .keyCertPem = keyCertPem ;
108112 this .serverCertPem = serverCertPem ;
@@ -177,6 +181,11 @@ public String getProxyAllowHttpJobTypes()
177181 return proxyAllowHttpJobTypes ;
178182 }
179183
184+ public String getEgressSites ()
185+ {
186+ return egressSites ;
187+ }
188+
180189 public String getKeyCertPem ()
181190 {
182191 return keyCertPem ;
0 commit comments