Package de.fhg.igd.mongomvcc.helper

Examples of de.fhg.igd.mongomvcc.helper.IdMap.values()


    }

    //ask MongoDB for objects with the given OIDs
    if (objs.size() == 1) {
      //shortcut for one object
      return createCursor(_delegate.find(new BasicDBObject(OID, objs.values()[0])), null);
    } else {
      DBObject qo = new BasicDBObject();
      qo.putAll(_branch.getQueryObject());
      return createCursor(_delegate.find(qo), new OIDInIndexFilter());
    }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.