How does one decode Client Cookies strings jax-rs? What I mean by this is how do you convert a String cookie value into a javax.ws.rs.core.Cookie
?
Here is an example of how to do it in Netty:
Cookie myCookie = ClientCookieDecoder.LAX.decode("my cookie string here")
Does anyone know of a useful utility method equivalent of this for jax rs?