Interface PasswordField.Builder

All Superinterfaces:
Buildable, CopyableBuilder<PasswordField.Builder,PasswordField>, SdkBuilder<PasswordField.Builder,PasswordField>, SdkPojo
Enclosing class:
PasswordField

public static interface PasswordField.Builder extends SdkPojo, CopyableBuilder<PasswordField.Builder,PasswordField>
  • Method Details

    • identifier

      PasswordField.Builder identifier(String identifier)

      The name of the password field.

      How you specify this depends on the request inspection payload type.

      • For JSON payloads, specify the field name in JSON pointer syntax. For information about the JSON Pointer syntax, see the Internet Engineering Task Force (IETF) documentation JavaScript Object Notation (JSON) Pointer.

        For example, for the JSON payload { "form": { "password": "THE_PASSWORD" } }, the password field specification is /form/password.

      • For form encoded payload types, use the HTML form names.

        For example, for an HTML form with the input element named password1, the password field specification is password1.

      Parameters:
      identifier - The name of the password field.

      How you specify this depends on the request inspection payload type.

      • For JSON payloads, specify the field name in JSON pointer syntax. For information about the JSON Pointer syntax, see the Internet Engineering Task Force (IETF) documentation JavaScript Object Notation (JSON) Pointer.

        For example, for the JSON payload { "form": { "password": "THE_PASSWORD" } }, the password field specification is /form/password.

      • For form encoded payload types, use the HTML form names.

        For example, for an HTML form with the input element named password1, the password field specification is password1.

      Returns:
      Returns a reference to this object so that method calls can be chained together.