HttpResponse response = httpClient.execute(httpPost);
InputStream content = response.getEntity().getContent();
Retorno retorno = Parser.of(content).getRetorno();
retorno.setOperacao(params.getOperacao());
return retorno;
} catch (ConversionException e) {
log.error(e);