Class SecretObject


  • public final class SecretObject
    extends Object
    Describes the properties of a secret object value.
    • Constructor Detail

      • SecretObject

        public SecretObject()
    • Method Detail

      • value

        public String value()
        Get the value property: The value of the secret. The format of this value will be determined based on the type of the secret object. If the type is Opaque, the value will be used as is without any modification.
        Returns:
        the value value.
      • withValue

        public SecretObject withValue​(String value)
        Set the value property: The value of the secret. The format of this value will be determined based on the type of the secret object. If the type is Opaque, the value will be used as is without any modification.
        Parameters:
        value - the value value to set.
        Returns:
        the SecretObject object itself.
      • type

        public SecretObjectType type()
        Get the type property: The type of the secret object which determines how the value of the secret object has to be interpreted.
        Returns:
        the type value.
      • withType

        public SecretObject withType​(SecretObjectType type)
        Set the type property: The type of the secret object which determines how the value of the secret object has to be interpreted.
        Parameters:
        type - the type value to set.
        Returns:
        the SecretObject object itself.
      • validate

        public void validate()
        Validates the instance.
        Throws:
        IllegalArgumentException - thrown if the instance is not valid.