Class Audits.CookieIssueDetails

    • Field Detail

      • serialVersionUID

        🡇     🗕  🗗  🗖
        protected static final long serialVersionUID
        This fulfils the SerialVersion UID requirement for all classes that implement Java's interface java.io.Serializable. Using the Serializable Implementation offered by java is very easy, and can make saving program state when debugging a lot easier. It can also be used in place of more complicated systems like "hibernate" to store data as well.
        See Also:
        Constant Field Values
      • cookie

        🡅  🡇     🗕  🗗  🗖
        public final Audits.AffectedCookie cookie
        If AffectedCookie is not set then rawCookieLine contains the raw Set-Cookie header string. This hints at a problem where the cookie line is syntactically or semantically malformed in a way that no valid cookie could be created.
        OPTIONAL
      • cookieWarningReasons

        🡅  🡇     🗕  🗗  🗖
        public final java.lang.String[] cookieWarningReasons
        [No Description Provided by Google]

        This particular field will have its values resricted to the contents of a CDP defined Enumerated String List. That list may be viewed here:

        📎 Audits.CookieWarningReason


        Programmatically Accessing the Enum:
        // Retrieve the list of enumerated strings for this field
        ReadOnlyList<String> enumerationStrs = Audits.CookieWarningReason.enumStrList("cookieWarningReasons");
        
        // Print the list of strings to the terminal
        for (final String s : enumerationStrs) System.out.println('\"' + s + "\", ");
        
        See Also:
        BaseType.enumStrList(String)
      • cookieExclusionReasons

        🡅  🡇     🗕  🗗  🗖
        public final java.lang.String[] cookieExclusionReasons
        [No Description Provided by Google]

        This particular field will have its values resricted to the contents of a CDP defined Enumerated String List. That list may be viewed here:

        📎 Audits.CookieExclusionReason


        Programmatically Accessing the Enum:
        // Retrieve the list of enumerated strings for this field
        ReadOnlyList<String> enumerationStrs = Audits.CookieExclusionReason.enumStrList("cookieExclusionReasons");
        
        // Print the list of strings to the terminal
        for (final String s : enumerationStrs) System.out.println('\"' + s + "\", ");
        
        See Also:
        BaseType.enumStrList(String)
      • operation

        🡅  🡇     🗕  🗗  🗖
        public final java.lang.String operation
        Optionally identifies the site-for-cookies and the cookie url, which may be used by the front-end as additional context.

        This particular field will have its values resricted to the contents of a CDP defined Enumerated String List. That list may be viewed here:

        📎 Audits.CookieOperation


        Programmatically Accessing the Enum:
        // Retrieve the list of enumerated strings for this field
        ReadOnlyList<String> enumerationStrs = Audits.CookieOperation.enumStrList("operation");
        
        // Print the list of strings to the terminal
        for (final String s : enumerationStrs) System.out.println('\"' + s + "\", ");
        
        See Also:
        BaseType.enumStrList(String)