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

com.launchdarkly.client.Target Maven / Gradle / Ivy

package com.launchdarkly.client;

import java.util.List;

class Target {
  private List values;
  private int variation;

  // We need this so Gson doesn't complain in certain java environments that restrict unsafe allocation
  Target() {}

  Target(List values, int variation) {
    this.values = values;
    this.variation = variation;
  }

  List getValues() {
    return values;
  }

  int getVariation() {
    return variation;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy