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

eu.xenit.apix.workflow.search.FacetValue Maven / Gradle / Ivy

There is a newer version: 4.1.2
Show newest version
package eu.xenit.apix.workflow.search;

public class FacetValue {

    public String value;
    public int amount;

    public FacetValue() {

    }

    public FacetValue(String value, int amount) {
        this.value = value;
        this.amount = amount;
    }


    public String getValue() {
        return value;
    }

    public void setValue(String value) {
        this.value = value;
    }

    public int getAmount() {
        return amount;
    }

    public void setAmount(int amount) {
        this.amount = amount;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy