Interface SecretAccessor.SecretBuilder<B extends SecretAccessor.SecretBuilder<B>>

Type Parameters:
B - The builder to return in order to be able to apply multiple build operations.
All Known Subinterfaces:
CredentialsAccessor.CredentialsBuilder<B>
Enclosing interface:
SecretAccessor

public static interface SecretAccessor.SecretBuilder<B extends SecretAccessor.SecretBuilder<B>>
Provides a builder method for a secret property returning the builder for applying multiple build operations.
  • Method Summary

    Modifier and Type Method Description
    B withSecret​(String aSecret)
    Sets the secret for the secret property.
  • Method Details

    • withSecret

      B withSecret​(String aSecret)
      Sets the secret for the secret property.
      Parameters:
      aSecret - The secret to be stored by the secret property.
      Returns:
      The builder for applying multiple build operations.