Skip to content
Snippets Groups Projects

OZG-7907 add new fields to aggregation mapping configuration

Merged Felix Reichenbach requested to merge OZG-7907-new-fields into main
9 files
+ 70
3
Compare changes
  • Side-by-side
  • Inline
Files
9
@@ -61,6 +61,10 @@ public class AggregationMapping {
@@ -61,6 +61,10 @@ public class AggregationMapping {
@NotEmpty(message = FIELD_IS_EMPTY)
@NotEmpty(message = FIELD_IS_EMPTY)
private String name;
private String name;
 
private String parent;
 
private Status status;
 
private Scope scope;
 
@Valid
@Valid
private FormIdentifier formIdentifier;
private FormIdentifier formIdentifier;
@@ -88,4 +92,12 @@ public class AggregationMapping {
@@ -88,4 +92,12 @@ public class AggregationMapping {
@NotBlank(message = FIELD_IS_EMPTY)
@NotBlank(message = FIELD_IS_EMPTY)
private String formId;
private String formId;
}
}
 
 
enum Status {
 
AUSSTEHEND, FREIGEGEBEN, ZURUECKGEHALTEN
 
}
 
 
enum Scope {
 
LAND, MANDANT
 
}
}
}
Loading