diff options
author | Vitaly Takmazov | 2016-07-31 01:35:18 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2016-07-31 01:35:18 +0300 |
commit | 27bb19646fe4046628e9a21e63a425c1f7a8f15f (patch) | |
tree | 8126844c7538d9d12db31813aaffa18ec6bcb14a /juick-api/src/main/webapp/WEB-INF | |
parent | 596d1dd390a30d8a88b3d37ac24ce69c964d074a (diff) |
move components to api module
Diffstat (limited to 'juick-api/src/main/webapp/WEB-INF')
-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> |