aboutsummaryrefslogtreecommitdiff
path: root/juick-ws/src/main/webapp/WEB-INF/web.xml
diff options
context:
space:
mode:
authorGravatar Vitaly Takmazov2016-08-07 23:46:00 +0300
committerGravatar Vitaly Takmazov2016-08-07 23:46:00 +0300
commit589901b03688e073eb85b5b51a58cec3c8d5d5e9 (patch)
tree5537bf1bd3f9dc99b210143a7cd0e0220bbc05fc /juick-ws/src/main/webapp/WEB-INF/web.xml
parent9f2901c0ad230b272c6bbae192e88d939cbb30f8 (diff)
juick-ws: do not use servlet api directly, refactor components as InitializingBean
Diffstat (limited to 'juick-ws/src/main/webapp/WEB-INF/web.xml')
-rw-r--r--juick-ws/src/main/webapp/WEB-INF/web.xml16
1 files changed, 1 insertions, 15 deletions
diff --git a/juick-ws/src/main/webapp/WEB-INF/web.xml b/juick-ws/src/main/webapp/WEB-INF/web.xml
index a040035c..7e1c30d0 100644
--- a/juick-ws/src/main/webapp/WEB-INF/web.xml
+++ b/juick-ws/src/main/webapp/WEB-INF/web.xml
@@ -1,18 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="3.0" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd">
- <listener>
- <description>APNS/GCM/MPNS module</description>
- <display-name>PushComponent</display-name>
- <listener-class>com.juick.ws.components.PushComponent</listener-class>
- </listener>
- <listener>
- <description>Crossposting module</description>
- <display-name>CrosspostComponent</display-name>
- <listener-class>com.juick.ws.components.CrosspostComponent</listener-class>
- </listener>
- <listener>
- <description>XMPP module</description>
- <display-name>XMPPComponent</display-name>
- <listener-class>com.juick.ws.components.XMPPComponent</listener-class>
- </listener>
+
</web-app>