com.launchdarkly.client.Prerequisite 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;
class Prerequisite {
private String key;
private int variation;
// We need this so Gson doesn't complain in certain java environments that restrict unsafe allocation
Prerequisite() {}
Prerequisite(String key, int variation) {
this.key = key;
this.variation = variation;
}
String getKey() {
return key;
}
int getVariation() {
return variation;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy