Examples of IPresenceService


Examples of org.eclipse.ecf.presence.service.IPresenceService

    Object service = context.getService(event.getServiceReference());
    if (service instanceof IAdaptable) {
      service = ((IAdaptable) service).getAdapter(IPresenceService.class);
    }
    if (service instanceof IPresenceService) {
      IPresenceService presenceService = (IPresenceService) service;
      IChannelContainerAdapter channelAdapter = (IChannelContainerAdapter) presenceService.getAdapter(IChannelContainerAdapter.class);
      if (channelAdapter != null) {
        switch (event.getType()) {
          case ServiceEvent.REGISTERED :
            registerChannel(channelAdapter);
            break;
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.