com.launchdarkly.client.Event 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 Event {
Long creationDate;
String key;
String kind;
LDUser user;
Event(String kind, String key, LDUser user) {
this.creationDate = System.currentTimeMillis();
this.key = key;
this.kind = kind;
this.user = user;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy