Package net.java.sip.communicator.service.protocol

Examples of net.java.sip.communicator.service.protocol.ProtocolProviderService


        ServiceReference uiServiceRef = bc.getServiceReference(UIService.class.getName());
        UIService uiService = (UIService) bc.getService(uiServiceRef);
        Chat chat = uiService.getChat(metaContact.getDefaultContact());
        chat.setChatVisible(true);

        ProtocolProviderService jabberProvider = OpenmeetingsPluginMenuItem.getJabberProtocol(bc, logger);
        if (jabberProvider == null)
        {
            return;
        }

        OperationSetBasicInstantMessaging basicInstMsgImpl = jabberProvider
                    .getOperationSet(OperationSetBasicInstantMessaging.class);

        String invitationLinkStr = OpenmeetingsPluginActivator.resourceService
            .getI18NString("plugin.openmeetings.INVITATION_LINK");
View Full Code Here


        {
            logger.error(e1.getMessage());
            return null;
        }

        ProtocolProviderService jabberProvider = null;
        for (ServiceReference aCRef : cRef)
        {
            ProtocolProviderService provider = (ProtocolProviderService) bc.getService(aCRef);
            if (provider.getClass().getName().contains("Jabber"))
            {
                jabberProvider = provider;
                break;
            }
        }
View Full Code Here

TOP

Related Classes of net.java.sip.communicator.service.protocol.ProtocolProviderService

Copyright © 2018 www.massapicom. 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.