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

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

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

public class FSVariation {
    private final String key;
    private final T value;

    public FSVariation(String key, T value) {
        this.key = key;
        this.value = value;
    }

    public String getKey() {
        return key;
    }

    public T getValue() {
        return value;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy