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

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;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy