com.tradeshift.sdk.core.TradeshiftClientConstants Maven / Gradle / Ivy
/*
* Copyright (c) 2017 Tradeshift Inc. and/or its affiliates. All rights reserved.
*/
package com.tradeshift.sdk.core;
import java.net.URI;
public final class TradeshiftClientConstants {
/**
* Central, non-regionalized, URI of the Tradeshift API (Production).
*/
public static final URI BASE_ENDPOINT_URI = URI.create("https://api.tradeshift.com/tradeshift");
/**
* Central, non-regionalized, URI of the Sandbox Tradeshift API.
*/
public static final URI SANDBOX_ENDPOINT_URI = URI.create("https://sandbox-api.tradeshift.com/tradeshift");
private TradeshiftClientConstants() {
// Empty to prevent instantiation.
}
}