/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
*
* Copyright 2014-2015 ForgeRock AS
*
* The contents of this file are subject to the terms
* of the Common Development and Distribution License
* (the License). You may not use this file except in
* compliance with the License.
*
* You can obtain a copy of the License at
* See the License for the specific language governing
* permission and limitations under the License.
*
* When distributing Covered Code, include this CDDL
* Header Notice in each file and include the License file
* If applicable, add the following below the CDDL Header,
* with the fields enclosed by brackets [] replaced by
* your own identifying information:
* "Portions Copyrighted [year] [name of copyright owner]"
*/
/**
* A customizer script defines the custom closures to interact with the default implementation and customize it.
*/
def httpHost = new HttpHost(c.serviceAddress?.host, c.serviceAddress?.port, c.serviceAddress?.scheme);
// Increase max total connection to 200
// Increase default max connection per route to 20
// Increase max connections for httpHost to 50
// configure timeout on the entire client
//PROXY
if (c.proxyAddress != null) {
}
// Authentication
case AuthMethod.BASIC_PREEMPTIVE:
case AuthMethod.BASIC:
// It's part of the http client spec to request the resource anonymously
// first and respond to the 401 with the Authorization header.
{
);
break;
case AuthMethod.NONE:
break;
default:
throw new IllegalArgumentException();
}
}
release {
}
authCache.put(new HttpHost(c.serviceAddress?.host, c.serviceAddress?.port, c.serviceAddress?.scheme), new BasicScheme());
}
}
if (true) {
} else {
if (ex instanceof InvalidCredentialsException) {
} else if (ex instanceof AuthenticationException) {
} else {
}
}
}
} else if (result instanceof ResourceResponse) {
} else if (result instanceof QueryResponse) {
}
}
}