Java Code Examples for org.immutables.value.Value#Redacted
The following examples show how to use
org.immutables.value.Value#Redacted .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: Redacted.java From immutables with Apache License 2.0 | 4 votes |
@Value.Redacted int code();
Example 2
Source File: Redacted.java From immutables with Apache License 2.0 | 4 votes |
@Value.Redacted String ssn();
Example 3
Source File: Redacted.java From immutables with Apache License 2.0 | 4 votes |
@Value.Redacted String[] data();
Example 4
Source File: Redacted.java From immutables with Apache License 2.0 | 4 votes |
@Value.Redacted int code();
Example 5
Source File: Redacted.java From immutables with Apache License 2.0 | 4 votes |
@Value.Redacted int code();
Example 6
Source File: Redacted.java From immutables with Apache License 2.0 | 4 votes |
@Value.Redacted int code();
Example 7
Source File: JwtAuthSettings.java From quilt with Apache License 2.0 | 2 votes |
/** * An encrypted shared `secret`, encoded per `EncryptedSecret`, that can be used to authenticate an incoming * ILP-over-HTTP (BLAST) connection. * * @return A {@link String} containing the shared secret in base64 encoding. Required for HS256. */ @Value.Redacted Optional<String> encryptedTokenSharedSecret();
Example 8
Source File: SimpleAuthSettings.java From quilt with Apache License 2.0 | 2 votes |
/** * authentication token for authenticating to remote system * @return token */ @Value.Redacted String authToken();
Example 9
Source File: LinkSettings.java From quilt with Apache License 2.0 | 2 votes |
/** * Additional, custom settings that any link can define. Redacted to prevent credential leakage in log files. * * @return A {@link Map} with {@link String} keys. */ @Value.Redacted public abstract Map<String, Object> getCustomSettings();