com.smartbear.readyapi.client.execution.ServerDefaults Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ready-api-testserver-client Show documentation
Show all versions of ready-api-testserver-client Show documentation
Java client library for creating and executing test recipes against Ready!API TestServer
The newest version!
package com.smartbear.readyapi.client.execution;
/**
* Holds constants with default server configuration for the Ready! API Runtime Service.
*/
public class ServerDefaults {
public static final String VERSION_PREFIX = "/v1";
private ServerDefaults() {
}
public static final String SERVICE_BASE_PATH = "/readyapi";
public static final int DEFAULT_PORT = 8443;
public static final Scheme DEFAULT_SCHEME = Scheme.HTTPS;
}