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

com.configcat.Preferences Maven / Gradle / Ivy

Go to download

Java SDK for ConfigCat, a feature flag, feature toggle, and configuration management service. That lets you launch new features and change your software configuration remotely without actually (re)deploying code. ConfigCat even helps you do controlled roll-outs like canary releases and blue-green deployments.

The newest version!
package com.configcat;

import com.google.gson.annotations.SerializedName;

class Preferences {

    @SerializedName(value = "u")
    private String baseUrl;
    @SerializedName(value = "r")
    private int redirect;
    @SerializedName(value = "s")
    private String salt;

    public String getBaseUrl() {
        return baseUrl;
    }

    public int getRedirect() {
        return redirect;
    }

    public String getSalt() {
        return salt;
    }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy