Interface BuildScanDataObfuscation
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionvoid
externalProcessName
(Function<? super String, ? extends String> obfuscator) Deprecated.Registers a function to transform the names of external processes captured when resource usage capturing is enabled.void
Deprecated.Registers a function to transform the local hostname and public hostname captured.void
ipAddresses
(Function<? super List<InetAddress>, ? extends List<String>> obfuscator) Deprecated.Registers a function used to transform the IP addresses captured.void
Deprecated.Registers a function to transform the username captured.
-
Method Details
-
username
Deprecated.Registers a function to transform the username captured.The function receives the username that would be captured, and should return the username that will be captured.
The received username may be
null
, and the function may return anull
value.- Parameters:
obfuscator
- the function to obfuscate the username- Since:
- 2.4.2
-
hostname
Deprecated.Registers a function to transform the local hostname and public hostname captured.The function receives the hostname that would be captured, and should return the hostname that will be captured.
The received hostname may be
null
, and the function may return anull
value.- Parameters:
obfuscator
- the function to obfuscate the hostname- Since:
- 2.4.2
-
ipAddresses
Deprecated.Registers a function used to transform the IP addresses captured.The function receives a list of
InetAddress
that would be captured, and should return the list ofString
that will be captured.The received list may be
null
or empty, and the function may return anull
or empty list, but may not return a list with anull
element.- Parameters:
obfuscator
- the function to obfuscate the IP addresses- Since:
- 2.4.2
-
externalProcessName
Deprecated.Registers a function to transform the names of external processes captured when resource usage capturing is enabled.An external process is a process running on the same machine as the build, that is not the build process itself, nor a descendant process of the build process. The function receives an external process name that would be captured, and should return the external process name that will be captured.
The received process name may not be
null
, and the function may not return anull
value.- Parameters:
obfuscator
- the function to obfuscate the external process names- Since:
- 3.18
-
BuildScanDataObfuscationConfiguration