com.launchdarkly.client.files.FlagFileRep Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of launchdarkly-client Show documentation
Show all versions of launchdarkly-client Show documentation
Official LaunchDarkly SDK for Java
package com.launchdarkly.client.files;
import com.google.gson.JsonElement;
import java.util.Map;
/**
* The basic data structure that we expect all source files to contain. Note that we don't try to
* parse the flags or segments at this level; that will be done by {@link FlagFactory}.
*/
final class FlagFileRep {
Map flags;
Map flagValues;
Map segments;
FlagFileRep() {}
FlagFileRep(Map flags, Map flagValues, Map segments) {
this.flags = flags;
this.flagValues = flagValues;
this.segments = segments;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy