blob: 0d6bd3212b10add2bfb9ca6c8f82c2aaf838f4e7 [file] [log] [blame]
/*******************************************************************************
* Copyright (C) 2021 the Eclipse BaSyx Authors
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
******************************************************************************/
package org.eclipse.basyx.testsuite.regression.vab.protocol.https;
import java.security.KeyManagementException;
import java.security.NoSuchAlgorithmException;
import org.eclipse.basyx.vab.protocol.http.connector.HTTPConnector;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* An HTTPS Connector class which can be used
* for creating an HTTPS Client with self signed SSL certificate
* and communicating in REST
*
* @author haque
*
*/
public class HTTPSConnector extends HTTPConnector {
private static Logger logger = LoggerFactory.getLogger(HTTPSConnector.class);
/**
* Initiates an HTTPSConnector with given address
* @param address
*/
public HTTPSConnector(String address) {
super(address);
setHttpsClient();
}
/**
* Initiates an HTTPSConnector with given address and media type
* @param address
* @param mediaType
*/
public HTTPSConnector(String address, String mediaType) {
super(address, mediaType);
setHttpsClient();
}
/**
* Configures the client so that it can run with HTTPS protocol
*/
private void setHttpsClient() {
try {
this.client = JerseyHttpsClientFactory.getJerseyHTTPSClient();
} catch (KeyManagementException | NoSuchAlgorithmException e) {
logger.error("Cannot create a https client");
}
}
}