Package org.persvr.remote.AliasIds

Examples of org.persvr.remote.AliasIds.AliasHandler


        path = subObjectId.substring(pathIndex);
        subObjectId = subObjectId.substring(0,pathIndex);
      }
      source = DataSourceManager.getSource(subObjectId);
      if (source == null) {
        AliasHandler handler = AliasIds.getAliasHandler(subObjectId);
        ObjectId objId;
        if (handler == null) {
          return new ObjectNotFoundId(source,value);
        }
        objId = handler.getTarget().getId();
        source = objId.getSource();
        if (source == null && handler != null)
          return handler;
        subObjectId = objId.getSubObjectId();
      }
View Full Code Here

TOP

Related Classes of org.persvr.remote.AliasIds.AliasHandler

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.