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

net.customware.license.support.feature.Feature Maven / Gradle / Ivy

The newest version!
package net.customware.license.support.feature;

public class Feature {
    private String id;

    private String name;

    private String description;

    public Feature( String id, String name ) {
        this.id = id;
        this.name = name;
    }

    public String getDescription() {
        return description;
    }

    public void setDescription( String description ) {
        this.description = description;
    }

    public String getId() {
        return id;
    }

    public String getName() {
        return name;
    }

    public void setName( String name ) {
        this.name = name;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy