Commit 75a3c4f4 authored by Gaston Dombiak's avatar Gaston Dombiak Committed by gato

Added pubsub module. JM-613

git-svn-id: http://svn.igniterealtime.org/svn/repos/wildfire/trunk@3651 b35dd754-fafc-0310-a699-88a17e54d16e
parent 597b2c67
...@@ -34,6 +34,7 @@ import org.jivesoftware.wildfire.handler.*; ...@@ -34,6 +34,7 @@ import org.jivesoftware.wildfire.handler.*;
import org.jivesoftware.wildfire.muc.MultiUserChatServer; import org.jivesoftware.wildfire.muc.MultiUserChatServer;
import org.jivesoftware.wildfire.muc.spi.MultiUserChatServerImpl; import org.jivesoftware.wildfire.muc.spi.MultiUserChatServerImpl;
import org.jivesoftware.wildfire.net.MulticastDNSService; import org.jivesoftware.wildfire.net.MulticastDNSService;
import org.jivesoftware.wildfire.pubsub.PubSubModule;
import org.jivesoftware.wildfire.roster.RosterManager; import org.jivesoftware.wildfire.roster.RosterManager;
import org.jivesoftware.wildfire.spi.*; import org.jivesoftware.wildfire.spi.*;
import org.jivesoftware.wildfire.transport.TransportHandler; import org.jivesoftware.wildfire.transport.TransportHandler;
...@@ -411,6 +412,7 @@ public class XMPPServer { ...@@ -411,6 +412,7 @@ public class XMPPServer {
loadModule(AdHocCommandHandler.class.getName()); loadModule(AdHocCommandHandler.class.getName());
loadModule(IQPrivacyHandler.class.getName()); loadModule(IQPrivacyHandler.class.getName());
loadModule(FileTransferProxy.class.getName()); loadModule(FileTransferProxy.class.getName());
loadModule(PubSubModule.class.getName());
// Load this module always last since we don't want to start listening for clients // Load this module always last since we don't want to start listening for clients
// before the rest of the modules have been started // before the rest of the modules have been started
loadModule(ConnectionManagerImpl.class.getName()); loadModule(ConnectionManagerImpl.class.getName());
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment