Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix vale error in grpc, oidc, and vertx areas #36960

Merged
merged 2 commits into from
Jan 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -29,21 +29,21 @@ public class SslServerConfig {
public Optional<Path> key;

/**
* An optional key store which holds the certificate information instead of specifying separate files.
* The key store can be either on classpath or an external file.
* An optional keystore that holds the certificate information instead of specifying separate files.
* The keystore can be either on classpath or an external file.
*/
@ConfigItem
public Optional<Path> keyStore;

/**
* An optional parameter to specify the type of the key store file. If not given, the type is automatically detected
* An optional parameter to specify the type of the keystore file. If not given, the type is automatically detected
rolfedh marked this conversation as resolved.
Show resolved Hide resolved
* based on the file name.
*/
@ConfigItem
public Optional<String> keyStoreType;

/**
* A parameter to specify the password of the key store file. If not given, the default ("password") is used.
* A parameter to specify the password of the keystore file. If not given, the default ("password") is used.
*/
@ConfigItem
public Optional<String> keyStorePassword;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ public static class Jwt {
public Optional<String> keyFile = Optional.empty();

/**
* If provided, indicates that JWT is signed using a private key from a keystore
* If provided, indicates that JWT is signed using a private key from a keystore.
*/
@ConfigItem
public Optional<String> keyStoreFile = Optional.empty();
Expand Down Expand Up @@ -454,7 +454,7 @@ public enum Verification {
public Optional<Verification> verification = Optional.empty();

/**
* An optional keystore which holds the certificate information instead of specifying separate files.
* An optional keystore that holds the certificate information instead of specifying separate files.
*/
@ConfigItem
public Optional<Path> keyStoreFile = Optional.empty();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,27 +58,27 @@ public class CertificateConfig {
public Optional<List<Path>> keyFiles;

/**
* An optional key store that holds the certificate information instead of specifying separate files.
* An optional keystore that holds the certificate information instead of specifying separate files.
*/
@ConfigItem
public Optional<Path> keyStoreFile;

/**
* An optional parameter to specify the type of the key store file.
* An optional parameter to specify the type of the keystore file.
* If not given, the type is automatically detected based on the file name.
*/
@ConfigItem
public Optional<String> keyStoreFileType;

/**
* An optional parameter to specify a provider of the key store file.
* If not given, the provider is automatically detected based on the key store file type.
* An optional parameter to specify a provider of the keystore file.
* If not given, the provider is automatically detected based on the keystore file type.
*/
@ConfigItem
public Optional<String> keyStoreProvider;

/**
* A parameter to specify the password of the key store file.
* A parameter to specify the password of the keystore file.
* If not given, and if it can not be retrieved from {@linkplain CredentialsProvider}.
*
* @see {@link #credentialsProvider}
Expand All @@ -97,8 +97,8 @@ public class CertificateConfig {
public Optional<String> keyStorePasswordKey;

/**
* An optional parameter to select a specific key in the key store.
* When SNI is disabled, and the key store contains multiple
* An optional parameter to select a specific key in the keystore.
* When SNI is disabled, and the keystore contains multiple
* keys and no alias is specified; the behavior is undefined.
*/
@ConfigItem
Expand Down
Loading