commit | 2b16f793d0e6ebf7183a2d39e234200808212536 | [log] [tgz] |
---|---|---|
author | NicoNes <nicolas.nesmon@gmail.com> | Thu Oct 21 06:59:13 2021 -0400 |
committer | GitHub <noreply@github.com> | Thu Oct 21 12:59:13 2021 +0200 |
tree | 7c848731445a605d512b7eef1447b87623e13b66 | |
parent | af24d5cbee1e11d0856f2f2bc97ffcedf1e76d2f [diff] |
Cookie Builder (#895) A proposal to use builder pattern much more developer friendly than telescoping constructors in `Cookie` and `NewCookie`. For example to set a `NewCookie` instance with a name and a `SameSite.LAX` attribute no longer need to do this: `new NewCookie("name", null, null, null, Cookie.DEFAULT_VERSION, null, DEFAULT_MAX_AGE, null, false, false, SameSite.LAX);` just do that: `new NewCookie.Builder("name").sameSite(SameSite.LAX).build();`
Jakarta RESTful Web Services provides a specification document, TCK and foundational API to develop web services following the Representational State Transfer (REST) architectural pattern.
Contributions are welcome, please sign the Eclipse Contributor Agreement before submitting PRs: https://www.eclipse.org/contribute/cla
Project page: https://projects.eclipse.org/projects/ee4j.jaxrs
Mailinglist: https://accounts.eclipse.org/mailing-list/jaxrs-dev