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

com.digitaldan.harmony.config.Function Maven / Gradle / Ivy

package com.digitaldan.harmony.config;

public class Function {
    private String name;
    private String label;
    private String action;

    public String getName() {
        return name;
    }

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

    public String getLabel() {
        return label;
    }

    public void setLabel(String label) {
        this.label = label;
    }

    public String getAction() {
        return action;
    }

    public void setAction(String action) {
        this.action = action;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy