In ServiceProperties.Logging, the Read/Write/Delete properties are "boolean" (basic true/false), while the backing fields are "Boolean" (nullable, so true/false/null).
This means the following code gives are NullPointerException:
Logging l = new Logging();
l.isDelete();
The fix is to make the backing fields "boolean"
In ServiceProperties.Logging, the Read/Write/Delete properties are "boolean" (basic true/false), while the backing fields are "Boolean" (nullable, so true/false/null).
This means the following code gives are NullPointerException:
The fix is to make the backing fields "boolean"