Examples of VcardTempModule


Examples of org.apache.vysper.xmpp.modules.extension.xep0054_vcardtemp.VcardTempModule

                throw new RuntimeException(e);
            }
   
            server.addModule(new SoftwareVersionModule());
            server.addModule(new EntityTimeModule());
            server.addModule(new VcardTempModule());
            server.addModule(new XmppPingModule());

            // Used by the websocket endpoint, if enabled
            sce.getServletContext().setAttribute("org.apache.vysper.xmpp.server.ServerRuntimeContext", server.getServerRuntimeContext());
            sce.getServletContext().setAttribute("vysper", server);
View Full Code Here

Examples of org.apache.vysper.xmpp.modules.extension.xep0054_vcardtemp.VcardTempModule

        server.start();
        System.out.println("vysper server is running...");

        server.addModule(new SoftwareVersionModule());
        server.addModule(new EntityTimeModule());
        server.addModule(new VcardTempModule());
        server.addModule(new XmppPingModule());
        server.addModule(new PrivateDataModule());

        server.addModule(new MUCModule());
    }
View Full Code Here

Examples of org.apache.vysper.xmpp.modules.extension.xep0054_vcardtemp.VcardTempModule

        server.start();
        System.out.println("Vysper server is running...");

        server.addModule(new SoftwareVersionModule());
        server.addModule(new EntityTimeModule());
        server.addModule(new VcardTempModule());
        server.addModule(new XmppPingModule());
        server.addModule(new PrivateDataModule());
        server.addModule(new AdhocCommandsModule());
        final ServiceAdministrationModule serviceAdministrationModule = new ServiceAdministrationModule();
        // unless admin user account with a secure password is added, this will be not become effective
View Full Code Here

Examples of org.apache.vysper.xmpp.modules.extension.xep0054_vcardtemp.VcardTempModule

            e.printStackTrace();
        }

        server.addModule(new SoftwareVersionModule());
        server.addModule(new EntityTimeModule());
        server.addModule(new VcardTempModule());
        server.addModule(new XmppPingModule());
        server.addModule(new PrivateDataModule());

        if (listOfModules != null) {
            for (Module module : listOfModules) {
View Full Code Here

Examples of org.apache.vysper.xmpp.modules.extension.xep0054_vcardtemp.VcardTempModule

            e.printStackTrace();
        }

        server.addModule(new SoftwareVersionModule());
        server.addModule(new EntityTimeModule());
        server.addModule(new VcardTempModule());
        server.addModule(new XmppPingModule());
        server.addModule(new PrivateDataModule());
        server.addModule(new PublishSubscribeModule());
    }
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.