use of com.synopsys.integration.blackduck.service.request.BlackDuckResponseRequest in project hub-alert by blackducksoftware.
the class BlackDuckProviderIssueHandler method performRequest.
private void performRequest(HttpUrl httpUrl, HttpMethod httpMethod, IssueRequest issueRequest) throws IntegrationException {
BlackDuckResponseRequest request = new BlackDuckRequestBuilder().method(httpMethod).bodyContent(new StringBodyContent(gson.toJson(issueRequest), BodyContentConverter.DEFAULT)).buildBlackDuckResponseRequest(httpUrl);
blackDuckApiClient.execute(request);
}
Aggregations