
com.mageddo.featureswitch.BasicFeature Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of feature-switch Show documentation
Show all versions of feature-switch Show documentation
Simplify Consumer And Producer Configuration
The newest version!
package com.mageddo.featureswitch;
public class BasicFeature implements Feature {
private final String name;
public BasicFeature(String name) {
this.name = name;
}
@Override
public String name() {
return name;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy