Package org.eclipse.ecf.provider.local.identity

Examples of org.eclipse.ecf.provider.local.identity.LocalID


    BaseContainerInstantiator implements
    IRemoteServiceContainerInstantiator {

  public IContainer createInstance(ContainerTypeDescription description, Object[] parameters) throws ContainerCreateException {
    try {
      LocalID localID = null;
      if (parameters != null && parameters[0] instanceof LocalID)
        localID = (LocalID) parameters[0];
      else
        localID = (LocalID) IDFactory.getDefault().createID(LocalNamespace.NAME, parameters);
      return new LocalRemoteServiceContainer(localID);
View Full Code Here

TOP

Related Classes of org.eclipse.ecf.provider.local.identity.LocalID

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.