diff options
Diffstat (limited to 'juick-api/src/main/webapp/WEB-INF/web.xml')
-rw-r--r-- | juick-api/src/main/webapp/WEB-INF/web.xml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/juick-api/src/main/webapp/WEB-INF/web.xml b/juick-api/src/main/webapp/WEB-INF/web.xml index 533a6882..c79efd29 100644 --- a/juick-api/src/main/webapp/WEB-INF/web.xml +++ b/juick-api/src/main/webapp/WEB-INF/web.xml @@ -13,4 +13,19 @@ 30 </session-timeout> </session-config> + <listener> + <description>APNS/GCM/MPNS module</description> + <display-name>PushComponent</display-name> + <listener-class>com.juick.components.PushComponent</listener-class> + </listener> + <listener> + <description>Crossposting module</description> + <display-name>CrosspostComponent</display-name> + <listener-class>com.juick.components.CrosspostComponent</listener-class> + </listener> + <listener> + <description>XMPP module</description> + <display-name>XMPPComponent</display-name> + <listener-class>com.juick.components.XMPPComponent</listener-class> + </listener> </web-app> |