Package com.googlecode.objectify.test.entity

Examples of com.googlecode.objectify.test.entity.User


  /** */
  @Test
  public void testBadlyNamedUserFiltering() throws Exception {
    fact().register(User.class);

    User hd = new User();
    hd.who = new com.google.appengine.api.users.User("samiam@gmail.com", "gmail.com");

    ofy().save().entity(hd).now();

    Query<User> q = ofy().load().type(User.class).filter("who", hd.who);
View Full Code Here

TOP

Related Classes of com.googlecode.objectify.test.entity.User

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.