All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.withabound.AboundEnvironment Maven / Gradle / Ivy

Go to download

The Abound Java SDK provides convenient access to the Abound API from applications written in Java.

The newest version!
package com.withabound;

public enum AboundEnvironment {
  SANDBOX("https://sandbox-api.withabound.com/"),
  PRODUCTION("https://production-api.withabound.com/");

  private final String baseUrl;

  AboundEnvironment(final String baseUrl) {
    this.baseUrl = baseUrl;
  }

  public String getBaseUrl() {
    return baseUrl;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy