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

com.flagsense.model.FSFlag Maven / Gradle / Ivy

There is a newer version: 1.0.6
Show newest version
package com.flagsense.model;

public class FSFlag {
    private final String flagId;
    private final String defaultKey;
    private final T defaultValue;

    public FSFlag(String flagId, String defaultKey, T defaultValue) {
        this.flagId = flagId;
        this.defaultKey = defaultKey;
        this.defaultValue = defaultValue;
    }

    public String getFlagId() {
        return flagId;
    }

    public String getDefaultKey() {
        return defaultKey;
    }

    public T getDefaultValue() {
        return defaultValue;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy