}
private void configureProxyAuthentication(HttpClient httpClient) throws SDKException {
if (hasText(paramters.getProxyUserId()) && hasText(paramters.getProxyPassword())) {
try {
httpClient.setProxyAuthentication(new ProxyAuthorization(paramters.getProxyUserId(), paramters.getProxyPassword()));
} catch (IOException e) {
throw new SDKException("httpclient proxy configuration failed ", e);
}
}
}