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

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


  public void start(final BundleContext ctxt) throws Exception {
    this.context = ctxt;
    SafeRunner.run(new ExtensionRegistryRunnable(this.context) {
      protected void runWithoutRegistry() throws Exception {
        ctxt.registerService(Namespace.class, new RemoteServiceNamespace(org.eclipse.ecf.provider.remoteservice.generic.RemoteServiceNamespace.NAME, "Generic remote service namespace"), null); //$NON-NLS-1$
        IAdapterManager am = getAdapterManager(ctxt);
        if (am != null) {
          rscAdapterFactories = new ArrayList();
          IAdapterFactory af = new RemoteServiceContainerAdapterFactory();
          am.registerAdapters(af, org.eclipse.ecf.provider.generic.SSLServerSOContainer.class);
View Full Code Here

TOP

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

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.