Class WsHttpSessionBindingListener
- java.lang.Object
-
- org.apache.tomcat.websocket.server.WsHttpSessionBindingListener
-
- All Implemented Interfaces:
java.io.Serializable,java.util.EventListener,HttpSessionBindingListener
public class WsHttpSessionBindingListener extends java.lang.Object implements HttpSessionBindingListener, java.io.Serializable
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description WsHttpSessionBindingListener(java.lang.String key)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetKey()voidvalueUnbound(HttpSessionBindingEvent event)Notifies the object that it is being unbound from a session and identifies the session.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface javax.servlet.http.HttpSessionBindingListener
valueBound
-
-
-
-
Method Detail
-
getKey
public java.lang.String getKey()
-
valueUnbound
public void valueUnbound(HttpSessionBindingEvent event)
Description copied from interface:javax.servlet.http.HttpSessionBindingListenerNotifies the object that it is being unbound from a session and identifies the session. The default implementation is a NO-OP.- Specified by:
valueUnboundin interfaceHttpSessionBindingListener- Parameters:
event- the event that identifies the session- See Also:
HttpSessionBindingListener.valueBound(javax.servlet.http.HttpSessionBindingEvent)
-
-