this.httpClient = httpClient;
}
public AuthenticateResponse authenticate(PasswordCredentials passwordCredentials)
throws PlatformlayerAuthenticationClientException {
Auth auth = new Auth();
auth.setPasswordCredentials(passwordCredentials);
AuthenticateRequest request = new AuthenticateRequest();
request.setAuth(auth);
AuthenticateResponse response;