Class AnonymizerConfiguration
The Class AnonymizerConfiguration represents a complete configuration for the Anonymizer class. For each possible DataCategory an AnonymizerApproach is set to indicate whether the paths related to this option are to be scrambled or removed from the message.
Inheritance
Namespace: BO4E.Extensions.Encryption
Assembly: BO4E-dotnet.Extensions.Encryption.dll
Syntax
public class AnonymizerConfiguration : object
Constructors
| Improve this Doc View SourceAnonymizerConfiguration()
This constructor initialises all options with KEEP by default => leaves the Business Object unchanged.
Declaration
public AnonymizerConfiguration()
Fields
| Improve this Doc View SourcehashingSalt
base64 encoded bytes used to salt hashing (HASH
Declaration
public string hashingSalt
Field Value
Type | Description |
---|---|
System.String |
unaffectedUserProperties
set of key in UserProperties / UserProperties that should not be affected by the anonymizing operations
Declaration
public HashSet<string> unaffectedUserProperties
Field Value
Type | Description |
---|---|
HashSet<System.String> |
Properties
| Improve this Doc View SourceConfigurationKey
Declaration
public string ConfigurationKey { get; }
Property Value
Type | Description |
---|---|
System.String |
operations
Declaration
public Dictionary<DataCategory, AnonymizerApproach> operations { get; }
Property Value
Type | Description |
---|---|
Dictionary<DataCategory, AnonymizerApproach> |
Methods
| Improve this Doc View SourceContainsNonKeepingOperations()
check if there are any operations in the configuration that actually change the object if an anonymizer with this configuration is applied.
Declaration
public bool ContainsNonKeepingOperations()
Returns
Type | Description |
---|---|
System.Boolean | true if configuration potentially changes something |
GetSalt()
returns the base64 encoded bytes from hashingSalt as byte array
Declaration
public byte[] GetSalt()
Returns
Type | Description |
---|---|
System.Byte[] | byte array or empty byte array if hashing salt is not set. |
IsInitial()
opposite of ContainsNonKeepingOperations()
Declaration
public bool IsInitial()
Returns
Type | Description |
---|---|
System.Boolean | opposite of ContainsNonKeepingOperations() |
SetOption(DataCategory, AnonymizerApproach)
Sets the passed anonymizerOption
anonymizerApproach
Declaration
public void SetOption(DataCategory anonymizerOption, AnonymizerApproach anonymizerApproach)
Parameters
Type | Name | Description |
---|---|---|
DataCategory | anonymizerOption | the passed DataCategory to |
AnonymizerApproach | anonymizerApproach | t |