I want to get multiple entities from the App Engine datastore by passing a list of keys as the parameter. The low level API has a method for this: get(Iterable keys). Is there an analogous method available for the JDO interface as well?
Try PersistenceManager.getObjectsById(Collection... keys)