Class EmailField

    • Method Detail

      • identifier

        public final String identifier()

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

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

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

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

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

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

      • 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)