Package Torello.Browser
Class Audits.SameSiteCookieIssueDetails
- java.lang.Object
-
- Torello.Java.JSON.BaseType
-
- Torello.Browser.Audits.SameSiteCookieIssueDetails
-
- All Implemented Interfaces:
java.io.Serializable
- Enclosing class:
- Audits
public static class Audits.SameSiteCookieIssueDetails extends BaseType implements java.io.Serializable
This information is currently necessary, as the front-end has a difficult time finding a specific cookie. With this, we can convey specific error information without the cookie.- See Also:
- Serialized Form
Hi-Lited Source-Code:- View Here: Torello/Browser/Audits.java
- Open New Browser-Tab: Torello/Browser/Audits.java
File Size: 7,751 Bytes Line Count: 179 '\n' Characters Found
-
-
Field Summary
Serializable ID Modifier and Type Field protected static long
serialVersionUID
For Object Serialization.Type Properties Modifier and Type Field Audits.AffectedCookie
cookie
If AffectedCookie is not set then rawCookieLine contains the raw Set-Cookie header string.String[]
cookieExclusionReasons
[No Description Provided by Google]
String
cookieUrl
[No Description Provided by Google]
OPTIONALString[]
cookieWarningReasons
[No Description Provided by Google]
String
operation
Optionally identifies the site-for-cookies and the cookie url, which may be used by the front-end as additional context.String
rawCookieLine
[No Description Provided by Google]
OPTIONALAudits.AffectedRequest
request
[No Description Provided by Google]
OPTIONALString
siteForCookies
[No Description Provided by Google]
OPTIONAL
-
Constructor Summary
Constructors Constructor Description SameSiteCookieIssueDetails(JsonObject jo)
JSON Object ConstructorSameSiteCookieIssueDetails(Audits.AffectedCookie cookie, String rawCookieLine, String[] cookieWarningReasons, String[] cookieExclusionReasons, String operation, String siteForCookies, String cookieUrl, Audits.AffectedRequest request)
Constructor
-
Method Summary
Generate Array that Indicates which Parameter are Optional Modifier and Type Method boolean[]
optionals()
Implementing this method allows sub-classes to specify which JSON Properties may be absent or null.Methods: class java.lang.Object Modifier and Type Method boolean
equals(Object other)
Checks whether'this'
equals an input Java-Object
int
hashCode()
Generates a Hash-Code for'this'
instance
-
-
-
Field Detail
-
serialVersionUID
protected static final long serialVersionUID
For Object Serialization. java.io.Serializable- 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
-
rawCookieLine
public final java.lang.String rawCookieLine
[No Description Provided by Google]
OPTIONAL
-
cookieWarningReasons
public final java.lang.String[] cookieWarningReasons
[No Description Provided by Google]
-
cookieExclusionReasons
public final java.lang.String[] cookieExclusionReasons
[No Description Provided by Google]
-
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.
-
siteForCookies
public final java.lang.String siteForCookies
[No Description Provided by Google]
OPTIONAL
-
cookieUrl
public final java.lang.String cookieUrl
[No Description Provided by Google]
OPTIONAL
-
request
public final Audits.AffectedRequest request
[No Description Provided by Google]
OPTIONAL
-
-
Constructor Detail
-
SameSiteCookieIssueDetails
public SameSiteCookieIssueDetails (Audits.AffectedCookie cookie, java.lang.String rawCookieLine, java.lang.String[] cookieWarningReasons, java.lang.String[] cookieExclusionReasons, java.lang.String operation, java.lang.String siteForCookies, java.lang.String cookieUrl, Audits.AffectedRequest request)
Constructor- Parameters:
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.
OPTIONALrawCookieLine
- -
OPTIONALcookieWarningReasons
- -cookieExclusionReasons
- -operation
- Optionally identifies the site-for-cookies and the cookie url, which may be used by the front-end as additional context.siteForCookies
- -
OPTIONALcookieUrl
- -
OPTIONALrequest
- -
OPTIONAL
-
SameSiteCookieIssueDetails
public SameSiteCookieIssueDetails(JsonObject jo)
JSON Object Constructor- Parameters:
jo
- A Json-Object having data about an instance of'SameSiteCookieIssueDetails'
.
-
-
Method Detail
-
optionals
public boolean[] optionals()
Description copied from class:BaseType
Implementing this method allows sub-classes to specify which JSON Properties may be absent or null. When binding aJsonObject
to a Java-Object, if some of the expected fields for the Java-Object map to Properties which might be left-out or omitted, then that may be indicated by setting that fields array positionTRUE
.
NOTE: This array should have a length equal to the number of fields contained by the Java Object. The first boolean in the array should specify whether the first Object Field may by absent. The second boolean should specify whether the second Object Field is optional in the JSON - and so on and so forth...
-
equals
public boolean equals(java.lang.Object other)
Checks whether'this'
equals an input Java-Object
- Overrides:
equals
in classjava.lang.Object
- Code:
- Exact Method Body:
if (other == null) return false; if (other.getClass() != this.getClass()) return false; SameSiteCookieIssueDetails o = (SameSiteCookieIssueDetails) other; return Objects.equals(this.cookie, o.cookie) && Objects.equals(this.rawCookieLine, o.rawCookieLine) && Arrays.deepEquals(this.cookieWarningReasons, o.cookieWarningReasons) && Arrays.deepEquals(this.cookieExclusionReasons, o.cookieExclusionReasons) && Objects.equals(this.operation, o.operation) && Objects.equals(this.siteForCookies, o.siteForCookies) && Objects.equals(this.cookieUrl, o.cookieUrl) && Objects.equals(this.request, o.request);
-
hashCode
public int hashCode()
Generates a Hash-Code for'this'
instance- Overrides:
hashCode
in classjava.lang.Object
- Code:
- Exact Method Body:
return this.cookie.hashCode() + Objects.hashCode(this.rawCookieLine) + Arrays.deepHashCode(this.cookieWarningReasons) + Arrays.deepHashCode(this.cookieExclusionReasons) + Objects.hashCode(this.operation) + Objects.hashCode(this.siteForCookies) + Objects.hashCode(this.cookieUrl) + this.request.hashCode();
-
-