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

42 lines
820 B
Java

package org.opencdmp.model.descriptiontemplatedefinition;
import java.time.Instant;
public class DefaultValue {
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 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;
}
}