![JAR search and dependency download from the Maven repository](/logo.png)
org.qas.qtest.api.auth.BasicQTestCredentials 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.qtest.api.auth;
/**
* BasicQTestCredentials
*
* @author Dzung Nguyen
* @version $Id BasicQTestCredentials 2014-03-27 12:23:30z dungvnguyen $
* @since 1.0
*/
public class BasicQTestCredentials implements QTestCredentials {
//~ class properties ========================================================
private final String token;
//~ class members ===========================================================
/**
* Creates {@link org.qas.qtest.api.auth.BasicQTestCredentials} from the given
* qTest authentication token.
*
* @param token the given qTest authentication token.
*/
public BasicQTestCredentials(String token) {
this.token = token;
}
@Override
public String getToken() {
return token;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy