package be.mentoringsystems.merke.model; /** * * @author anthonyarents */ public class Filter { private String property; private Object value; public String getProperty() { return property; } public void setProperty(final String property) { this.property = property; } public Object getValue() { return value; } public void setValue(final Object value) { this.value = value; } }