Available in versions: Dev (3.21)
This documentation is for the unreleased development version of jOOQ. Click on the above version links to get this documentation for a supported version of jOOQ.
Redacted column behaviour
Applies to ❌ Open Source Edition ✅ Express Edition ✅ Professional Edition ✅ Enterprise Edition
When using is redacted columns, the Settings.redact
flag specifies whether columns whose DataType.redacted()
flag is set to true
will be redacted in which context:
-
Redact.TEXT_ONLY
(the default) redacts content in text output and HTML output. -
Redact.ALL_FORMATS
redacts content also in CSV output, JSON output, and XML output. -
Redact.NONE
turns the feature off.
Example configuration
Settings settings = new Settings() .redact(Redact.ALL_FORMATS); // Defaults to TEXT_ONLY
Feedback
Do you have any feedback about this page? We'd love to hear it!