Package org.eclipse.ecf.remoteservice

Examples of org.eclipse.ecf.remoteservice.IExtendedRemoteServiceRegistration


    endpointDescriptionProperties.put(
        org.eclipse.ecf.remoteservice.Constants.SERVICE_ID,
        remoteRegistration.getID().getContainerRelativeID());

    if (remoteRegistration instanceof IExtendedRemoteServiceRegistration) {
      IExtendedRemoteServiceRegistration iersr = (IExtendedRemoteServiceRegistration) remoteRegistration;
      Map<String, Object> extraProperties = iersr.getExtraProperties();
      if (extraProperties != null)
        endpointDescriptionProperties = PropertiesUtil.mergeProperties(endpointDescriptionProperties, extraProperties);
    }
   
    // Create ExportEndpoint/ExportRegistration
View Full Code Here

TOP

Related Classes of org.eclipse.ecf.remoteservice.IExtendedRemoteServiceRegistration

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.