Class UsernameField

    • Method Detail

      • identifier

        public final String identifier()

        The name of the username 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": { "username": "THE_USERNAME" } }, the username field specification is /form/username.

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

          For example, for an HTML form with the input element named username1, the username field specification is username1

        Returns:
        The name of the username 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": { "username": "THE_USERNAME" } }, the username field specification is /form/username.

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

          For example, for an HTML form with the input element named username1, the username field specification is username1

      • hashCode

        public final int hashCode()
        Overrides:
        hashCode in class Object
      • equals

        public final boolean equals​(Object obj)
        Overrides:
        equals in class Object
      • toString

        public final String toString()
        Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be redacted from this string using a placeholder value.
        Overrides:
        toString in class Object
      • getValueForField

        public final <T> Optional<T> getValueForField​(String fieldName,
                                                      Class<T> clazz)