bulk data instrumentation included

This commit is contained in:
Arbaaz Muslim
2022-08-09 16:31:49 -07:00
parent 5c102f76fc
commit d148f458e0
3 changed files with 19 additions and 0 deletions

View File

@@ -46,6 +46,7 @@ public class AppProperties {
private Boolean graphql_enabled = false;
private Boolean binary_storage_enabled = false;
private Boolean bulk_export_enabled = false;
private Boolean bulk_import_enabled = false;
private Boolean default_pretty_print = true;
private Integer default_page_size = 20;
private Integer max_binary_size = null;
@@ -402,6 +403,14 @@ public class AppProperties {
this.bulk_export_enabled = bulk_export_enabled;
}
public Boolean getBulk_import_enabled() {
return bulk_import_enabled;
}
public void setBulk_import_enabled(Boolean bulk_import_enabled) {
this.bulk_import_enabled = bulk_import_enabled;
}
public EncodingEnum getDefault_encoding() {
return default_encoding;
}