Examples of MucModule


Examples of com.calclab.emite.xep.muc.client.MucModule

  @Override
  protected void configure() {
    install(new CoreModule());
    install(new ImModule());
    install(new MucModule());
    bind(PingPongDisplay.class).to(PingPongWidget.class).in(Singleton.class);
  }
View Full Code Here

Examples of org.apache.vysper.xmpp.modules.extension.xep0045_muc.MUCModule

    private MultiUserChat chat;
    private MultiUserChat chat2;
   
    @Override
    protected void addModules(XMPPServer server) {
        server.addModule(new MUCModule(MUC_SUBDOMAIN, conference));
    }
View Full Code Here

Examples of org.apache.vysper.xmpp.modules.extension.xep0045_muc.MUCModule

    protected MultiUserChat chat2;

    @Override
    protected void addModules(XMPPServer server) {
        server.addModule(new MUCModule(MUC_SUBDOMAIN, conference));
    }
View Full Code Here

Examples of org.apache.vysper.xmpp.modules.extension.xep0045_muc.MUCModule

    private MultiUserChat chat2;

    @Override
    protected void addModules(XMPPServer server) {
        server.addModule(new MUCModule(MUC_SUBDOMAIN, conference));
    }
View Full Code Here

Examples of org.apache.vysper.xmpp.modules.extension.xep0045_muc.MUCModule

                // add the multi-user chat module and create a few test rooms
                Conference conference = new Conference("test conference");
                conference.createRoom(EntityImpl.parseUnchecked("camel-anon@apache.camel"), "camel-anon", RoomType.FullyAnonymous);
                conference.createRoom(EntityImpl.parseUnchecked("camel-test@apache.camel"), "camel-test", RoomType.Public);
                xmppServer.addModule(new MUCModule("conference", conference));
            }
        } catch (Exception e) {
            throw new RuntimeException("An error occurred when initializing the XMPP Test Server.", e);
        }
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.