animovscw commented on code in PR #12796:
URL: https://github.com/apache/ignite/pull/12796#discussion_r2912533513


##########
modules/web/src/main/java/org/apache/ignite/cache/websession/WebSession.java:
##########
@@ -248,8 +248,10 @@ protected void setId(String id) {
         return val;
     }
 
-    /** {@inheritDoc} */
-    @Override public Object getValue(String name) {
+    /**
+     * @deprecated Legacy {@link HttpSession} API. Use {@link 
#getAttribute(String)}.
+     */
+    @Deprecated public Object getValue(String name) {

Review Comment:
   Restored `@Override` for legacy method



##########
modules/web/src/main/java/org/apache/ignite/cache/websession/WebSession.java:
##########
@@ -261,8 +263,10 @@ protected void setId(String id) {
         return Collections.enumeration(attrs.keySet());
     }
 
-    /** {@inheritDoc} */
-    @Override public String[] getValueNames() {
+    /**
+     * @deprecated Legacy {@link HttpSession} API. Use {@link 
#getAttributeNames()}.
+     */
+    @Deprecated public String[] getValueNames() {

Review Comment:
   Restored `@Override` for legacy method



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to