com.vwo.URIConstants Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vwo-java-sdk Show documentation
Show all versions of vwo-java-sdk Show documentation
Java library to initiate VWo instance for server side a/b testing
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