aboutsummaryrefslogtreecommitdiff
path: root/juick-ws/src/main/webapp
diff options
context:
space:
mode:
authorGravatar Vitaly Takmazov2016-07-31 02:34:12 +0300
committerGravatar Vitaly Takmazov2016-07-31 02:34:12 +0300
commitd06d53708a1f87d41b14fc87d40a7b9233b36fcb (patch)
treecbf529d736e7a3886003cdcb25fa354fef5ce701 /juick-ws/src/main/webapp
parent0c2ac00e800b2ed5f73a7abb9922b87329a077de (diff)
move components to ws module
Diffstat (limited to 'juick-ws/src/main/webapp')
-rw-r--r--juick-ws/src/main/webapp/WEB-INF/web.xml18
1 files changed, 18 insertions, 0 deletions
diff --git a/juick-ws/src/main/webapp/WEB-INF/web.xml b/juick-ws/src/main/webapp/WEB-INF/web.xml
new file mode 100644
index 00000000..a040035c
--- /dev/null
+++ b/juick-ws/src/main/webapp/WEB-INF/web.xml
@@ -0,0 +1,18 @@
+<?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>