![JAR search and dependency download from the Maven repository](/logo.png)
org.qas.api.http.AbstractHttpAuthClient Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of qtest-sdk-java Show documentation
Show all versions of qtest-sdk-java Show documentation
A java SDK client wrap qTest REST API
The newest version!
package org.qas.api.http;
import org.qas.api.ClientConfiguration;
/**
* AbstractHttpAuthClient
*
* @author Dzung Nguyen
* @version $Id AbstractHttpAuthClient 2014-03-27 11:44:30z dungvnguyen $
* @since 1.0
*/
public abstract class AbstractHttpAuthClient implements HttpAuthClient {
//~ class properties ========================================================
private final ClientConfiguration configuration;
//~ class members ===========================================================
/**
* Creates the concrete class from the specified client configuration.
*
* @param configuration the specified client configuration object.
*/
protected AbstractHttpAuthClient(ClientConfiguration configuration) {
this.configuration = configuration;
}
/**
* @return the specified client configuration object.
*/
protected ClientConfiguration getConfiguration() {
return configuration;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy