org.zodiac.actuate.feature.NamedFeature Maven / Gradle / Ivy
The newest version!
package org.zodiac.actuate.feature;
public class NamedFeature {
private final String name;
private final Class> type;
public NamedFeature(String name, Class> type) {
this.name = name;
this.type = type;
}
public String getName() {
return this.name;
}
public Class> getType() {
return this.type;
}
}