// The Objectify service for the entity must be registered before any
// operations can be executed
ObjectifyService.register(Note.class);
Objectify ofy = ObjectifyService.begin();
Note note = a;
// Use setters to populate the object
// the Key will be auto generated and does not need to be set
ofy.put(note);
}