Examples of ObjectStoreSession


Examples of com.google.code.gaeom.ObjectStoreSession

  }

  @Test
  public void testCustomPropertyEncoder() throws Exception
  {
    ObjectStoreSession oss = ObjectStore.Factory.create().beginSession();
    LongEncodedEntity e = new LongEncodedEntity();
    Key key = oss.store(e).now();
    Point orig = e.p;
    Long l = new PointLongEncoder().encode(orig);
   
    e.p = null;
    oss.refresh(e).now();
    assertEquals(orig, e.p);

    Entity ent = DatastoreServiceFactory.getDatastoreService().get(key);
    assertEquals(l, ent.getProperty("p"));
  }
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.