com.flagsense.model.FSFlag Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sdk Show documentation
Show all versions of sdk Show documentation
Java SDK for consuming flagsense services
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;
}
}