argos/backend/core/src/main/java/org/opencdmp/model/descriptiontemplatedefinition/Rule.java

52 lines
1007 B
Java

package org.opencdmp.model.descriptiontemplatedefinition;
import java.time.Instant;
public class Rule {
public final static String _target = "target";
private String target;
private String textValue;
public static final String _textValue = "textValue";
private Instant dateValue;
public static final String _dateValue = "dateValue";
private Boolean booleanValue;
public static final String _booleanValue = "booleanValue";
public String getTarget() {
return this.target;
}
public void setTarget(String target) {
this.target = target;
}
public String getTextValue() {
return this.textValue;
}
public void setTextValue(String textValue) {
this.textValue = textValue;
}
public Instant getDateValue() {
return this.dateValue;
}
public void setDateValue(Instant dateValue) {
this.dateValue = dateValue;
}
public Boolean getBooleanValue() {
return this.booleanValue;
}
public void setBooleanValue(Boolean booleanValue) {
this.booleanValue = booleanValue;
}
}