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

com.vwo.URIConstants Maven / Gradle / Ivy

There is a newer version: 1.66.0
Show newest version
package com.vwo;

public enum URIConstants {

  BASE_URL("dev.visualwebsiteoptimizer.com"),
  ACCOUNT_SETTINGS("/server-side/settings"),
  TRACK_USER("/server-side/track-user"),
  TRACK_GOAL("/server-side/track-goal");


  private final String uri;

  URIConstants(String uri) {
    this.uri = uri;
  }

  @Override
  public String toString() {
    return this.uri;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy