com.mageddo.togglefirst.BasicFeature Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of toggle-first-core Show documentation
Show all versions of toggle-first-core Show documentation
Enable and disable your features in production on a button click
package com.mageddo.togglefirst;
public class BasicFeature implements Feature {
private final String name;
public BasicFeature(String name) {
this.name = name;
}
@Override
public String name() {
return name;
}
}