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

io.featurehub.client.FeatureValueInterceptorHolder Maven / Gradle / Ivy

package io.featurehub.client;

public class FeatureValueInterceptorHolder {
  public final boolean allowLockOverride;
  public final FeatureValueInterceptor interceptor;

  public FeatureValueInterceptorHolder(boolean allowLockOverride, FeatureValueInterceptor interceptor) {
    this.allowLockOverride = allowLockOverride;
    this.interceptor = interceptor;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy