Package com.google.apphosting.datastore.EntityV4.Key

Examples of com.google.apphosting.datastore.EntityV4.Key.PathElement


   * Update a key object with the id in the proto, if one exists.
   */
  static void updateKey(EntityV4.Key v4Key, Key key) {
    List<EntityV4.Key.PathElement> pathElements = v4Key.getPathElementList();
    if (!pathElements.isEmpty()) {
      PathElement lastElement = pathElements.get(pathElements.size() - 1);
      if (lastElement.hasId()) {
        key.setId(lastElement.getId());
      }
    }
  }
View Full Code Here

TOP

Related Classes of com.google.apphosting.datastore.EntityV4.Key.PathElement

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.