final String post,
final Map<String, String> headers,
final int postLength) throws IOException {
if (!SUPPORTED_METHODS.contains(method)) {
throw new Stubby4JException(String.format("HTTP method '%s' not supported when contacting stubby4j", method));
}
final URL url = new URL(fullUrl);
final HttpURLConnection connection = (HttpURLConnection) url.openConnection();