public static void crud() throws Exception {
Datastore ds = getDatastore();
// create
PureMorphiaUser user = new PureMorphiaUser("John", "Smith");
ds.save(user);
// read
PureMorphiaUser user2 = ds.get(PureMorphiaUser.class, user.id);
// update
user2.fName = "Tom";
ds.save(user2);