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

com.launchdarkly.client.files.FlagFileRep Maven / Gradle / Ivy

There is a newer version: 4.61
Show newest version
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