- strategy() - Method in class reuse.redact.Redact
-
Extension point to allow subclasses to redaction strategy. Default to Strategy.FULL
- Strategy - Enum in reuse.redact
-
- Strategy.FULL - Class in reuse.redact
-
Provides the most protection, but may be at the expense of debugging.
- Strategy.HASH - Class in reuse.redact
-
Allow for debugging where we just need to know previous and current value is the same.
- Strategy.LAST_4 - Class in reuse.redact
-
commonly use for things like credit cards, SSN or other account numbers.
- Strategy.NOOP - Class in reuse.redact
-
This should be rarely use; maybe only for debugging