Package org.eclipse.ecf.provider.remoteservice.generic

Examples of org.eclipse.ecf.provider.remoteservice.generic.RegistrySharedObject


    return remoteServiceAdapter;
  }
 
  public ServletServerContainer(ID id) {
    super(new SOContainerConfig(id));
    remoteServiceAdapter = new RegistrySharedObject();
    try {
      getSharedObjectManager().addSharedObject(IDFactory.getDefault().createStringID(RegistrySharedObject.class.getName()), remoteServiceAdapter, null);
    } catch (SharedObjectAddException e) {
      throw new RuntimeException("Cannot add RegistrySharedObject",e);
    }
View Full Code Here


public class J8RemoteServiceContainerAdapterFactory extends RemoteServiceContainerAdapterFactory {

  protected ISharedObject createAdapter(ISharedObjectContainer container, @SuppressWarnings("rawtypes") Class adapterType, ID adapterID) {
    if (adapterType.equals(IRemoteServiceContainerAdapter.class)) {
      return new RegistrySharedObject() {
      };
    }
    return null;
  }
View Full Code Here

TOP

Related Classes of org.eclipse.ecf.provider.remoteservice.generic.RegistrySharedObject

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.