Sorry, just wanted to be sure.
Do you need to validate the certificate? You might be able to skip it.
To do so:
Client client = ClientConfig.builder().serverUrl("https://{ip}/suite-api")
.basicAuth("user", "pass")
.verify("false")
.useJson()
.build()
.newClient();