finance-analyzer/src/main/java/de/arminwolf/financeanalyzer/dao/charts/model/Filter.java

46 lines
691 B
Java

package de.arminwolf.financeanalyzer.dao.charts.model;
public class Filter {
private String property;
private String operator;
private int value;
public Filter(String property, String operator, int value) {
this.property = property;
this.operator = operator;
this.value = value;
}
public String getProperty() {
return property;
}
public void setProperty(final String property) {
this.property = property;
}
public String getOperator() {
return operator;
}
public void setOperator(final String operator) {
this.operator = operator;
}
public int getValue() {
return value;
}
public void setValue(final int value) {
this.value = value;
}
}