Enum HttpLogDetailLevel

    • Enum Constant Detail

      • BASIC

        public static final HttpLogDetailLevel BASIC
        Logs only URLs, HTTP methods, and time to finish the request.
      • HEADERS

        public static final HttpLogDetailLevel HEADERS
        Logs everything in BASIC, plus all the request and response headers.
      • BODY

        public static final HttpLogDetailLevel BODY
        Logs everything in BASIC, plus all the request and response body. Note that only payloads in plain text or plain text encoded in GZIP will be logged.
      • BODY_AND_HEADERS

        public static final HttpLogDetailLevel BODY_AND_HEADERS
        Logs everything in HEADERS and BODY.
    • Method Detail

      • values

        public static HttpLogDetailLevel[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (HttpLogDetailLevel c : HttpLogDetailLevel.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static HttpLogDetailLevel valueOf​(String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null
      • shouldLogUrl

        public boolean shouldLogUrl()
        Returns:
        a value indicating whether a request's URL should be logged.
      • shouldLogHeaders

        public boolean shouldLogHeaders()
        Returns:
        a value indicating whether HTTP message headers should be logged.
      • shouldLogBody

        public boolean shouldLogBody()
        Returns:
        a value indicating whether HTTP message bodies should be logged.