Examples of asSingleEntity()


Examples of com.google.appengine.api.datastore.PreparedQuery.asSingleEntity()

                throw new PreparedQuery.TooManyResultsException();
            }
            return list.get(0);
        }
        PreparedQuery pq = prepareQuery();
        return pq.asSingleEntity();
    }

    /**
     * Returns a list of keys.
     *
 
View Full Code Here

Examples of com.google.walkaround.util.server.appengine.CheckedDatastore.CheckedPreparedQuery.asSingleEntity()

        new RetryHelper.Body<Entity>() {
          @Override public Entity run() throws RetryableFailure, PermanentFailure {
            CheckedPreparedQuery q = datastore.prepareNontransactionalQuery(
                new Query(ENTRY_KIND).setFilter(
                    FilterOperator.EQUAL.of(USER_EMAIL_PROPERTY, userEmail)));
            return q.asSingleEntity();
          }
        });
    return convertEntity(e);
  }
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.