jakartaee / rest

Jakarta RESTful Web Services
Other
362 stars 117 forks source link

TCK: Test SameSite attribute of NewCookie #1018

Open jansupol opened 3 years ago

jansupol commented 3 years ago

See https://github.com/eclipse-ee4j/jaxrs-api/pull/868

mkarg commented 2 years ago

AFAIK @jelemux is working on this one.

dabbabi commented 10 months ago

Hi, as I mentioned here, and please correct me if I'm wrong, I think that it will be better, in jakarta.ws.rs.core.NewCookie class, to substitute

public enum SameSite {
   NONE,
   LAX,
   STRICT
}

by

public enum SameSite {
   None,
   Lax,
   Strict
}