summaryrefslogtreecommitdiffhomepage
path: root/src/java/nginx/unit/SessionAttrProxy.java
diff options
context:
space:
mode:
authorMax Romanov <max.romanov@gmail.com>2019-02-28 18:02:42 +0300
committerMax Romanov <max.romanov@gmail.com>2019-02-28 18:02:42 +0300
commit5bfdebb9e4161a689113d73775498949a09d7fb5 (patch)
treefcb69169e3da983db0eb1f48d2dccc2ac2ff867b /src/java/nginx/unit/SessionAttrProxy.java
parentec7319d32c9c41597a99a9422ff324c97a92bb21 (diff)
downloadunit-5bfdebb9e4161a689113d73775498949a09d7fb5.tar.gz
unit-5bfdebb9e4161a689113d73775498949a09d7fb5.tar.bz2
Introducing Java Servlet Container beta.
Diffstat (limited to 'src/java/nginx/unit/SessionAttrProxy.java')
-rw-r--r--src/java/nginx/unit/SessionAttrProxy.java40
1 files changed, 40 insertions, 0 deletions
diff --git a/src/java/nginx/unit/SessionAttrProxy.java b/src/java/nginx/unit/SessionAttrProxy.java
new file mode 100644
index 00000000..bddeede9
--- /dev/null
+++ b/src/java/nginx/unit/SessionAttrProxy.java
@@ -0,0 +1,40 @@
+package nginx.unit;
+
+import java.util.List;
+
+import javax.servlet.http.HttpSessionAttributeListener;
+import javax.servlet.http.HttpSessionBindingEvent;
+
+public class SessionAttrProxy implements HttpSessionAttributeListener
+{
+ private final List<HttpSessionAttributeListener> listeners_;
+
+ public SessionAttrProxy(List<HttpSessionAttributeListener> listeners)
+ {
+ listeners_ = listeners;
+ }
+
+ @Override
+ public void attributeAdded(HttpSessionBindingEvent event)
+ {
+ for (HttpSessionAttributeListener l : listeners_) {
+ l.attributeAdded(event);
+ }
+ }
+
+ @Override
+ public void attributeRemoved(HttpSessionBindingEvent event)
+ {
+ for (HttpSessionAttributeListener l : listeners_) {
+ l.attributeRemoved(event);
+ }
+ }
+
+ @Override
+ public void attributeReplaced(HttpSessionBindingEvent event)
+ {
+ for (HttpSessionAttributeListener l : listeners_) {
+ l.attributeReplaced(event);
+ }
+ }
+}