URI uri = URIUtils.createURI(getShema(), getApiJelastic(), getPort(), getUrlDeploy(), URLEncodedUtils.format(qparams, "UTF-8"), null);
getLog().debug(uri.toString());
HttpGet httpPost = new HttpGet(uri);
addHeaders(httpPost);
ResponseHandler<String> responseHandler = new BasicResponseHandler();
String responseBody = httpclient.execute(httpPost, responseHandler);
getLog().debug(responseBody);
deploy = mapper.readValue(responseBody, Deploy.class);
} catch (URISyntaxException e) {
getLog().error(e.getMessage(), e);