com.github.cloudyrock.dimmer.FeatureMetadataValue Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dimmer-core Show documentation
Show all versions of dimmer-core Show documentation
Lightweight library to manage feature toggling. Unlike others Dimmer doesn't work
in switch mode, black or white, It provides a flexible way to respond to disabled
features by adding customizable behaviours and pre-configured responses.
package com.github.cloudyrock.dimmer;
public final class FeatureMetadataValue extends FeatureMetadata {
private final Object valueToReturn;
public FeatureMetadataValue(String feature, Object valueToReturn) {
super(feature);
this.valueToReturn = valueToReturn;
}
public Object getValueToReturn() {
return valueToReturn;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy