Add list-only to README

This commit is contained in:
David Turanski
2020-09-21 13:47:06 -04:00
parent 1a593fc517
commit 332e6f4728

View File

@@ -165,4 +165,12 @@ public class AwsS3SupplierProperties {
public boolean isExclusivePatterns() {
return !(this.filenamePattern != null && this.filenameRegex != null);
}
public boolean isListOnly() {
return listOnly;
}
public void setListOnly(boolean listOnly) {
this.listOnly = listOnly;
}
}