no.finn.unleash.UnleashContext Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of unleash-client-java Show documentation
Show all versions of unleash-client-java Show documentation
A client library for Unleash
package no.finn.unleash;
import java.util.Map;
/** @deprecated use {@link io.getunleash.UnleashContext} */
@Deprecated
public class UnleashContext extends io.getunleash.UnleashContext {
public UnleashContext(
String userId, String sessionId, String remoteAddress, Map properties) {
super(userId, sessionId, remoteAddress, properties);
}
public UnleashContext(
String appName,
String environment,
String userId,
String sessionId,
String remoteAddress,
Map properties) {
super(appName, environment, userId, sessionId, remoteAddress, properties);
}
}