We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Expected Behavior
jakarta.servlet.http.Cookie now support RFC 6265.
jakarta.servlet.http.Cookie
and getComment, setComment, getVersion, setVersion With the adoption of support for RFC 6265, those method should no longer be used.
getComment
setComment
getVersion
setVersion
and now, those methods's body is empty or return null. therefore, we should add @Deprecated on SavedCookie.class's constructor and some getter.
@Deprecated
SavedCookie.class
Current Behavior
in getter, it always return 0 or null. and setter have no operation.
Context Suggested solution: #12531
The text was updated successfully, but these errors were encountered:
Refactor SavedCookie for Cookie's deprecated method
2b35d05
Closes spring-projectsgh-12454
073dab3
jzheaux
twosom
Successfully merging a pull request may close this issue.
Uh oh!
There was an error while loading. Please reload this page.
Expected Behavior
jakarta.servlet.http.Cookie
now support RFC 6265.and
getComment
,setComment
,getVersion
,setVersion
With the adoption of support for RFC 6265, those method should no longer be used.
and now, those methods's body is empty or return null.
therefore, we should add
@Deprecated
onSavedCookie.class
's constructor and some getter.Current Behavior
in getter, it always return 0 or null. and setter have no operation.
Context
Suggested solution: #12531
The text was updated successfully, but these errors were encountered: