Interface WsClient


@Generated("https://github.com/SonarSource/sonar-ws-generator") public interface WsClient
Allows to request the web services of SonarQube server. Instance is provided by WsClientFactory.

Usage:

   HttpConnector httpConnector = HttpConnector.newBuilder()
     .url("http://localhost:9000")
     .credentials("admin", "admin")
     .build();
   WsClient wsClient = WsClientFactories.getDefault().newClient(httpConnector);
   wsClient.issues().search(issueRequest);
 

Since:
5.3