// Now create a new Profile entity
profile = new Profile(userId, displayName, mainEmail, teeShirtSize);
} else {
// The Profile entity already exists
// Update the Profile entity
profile.update(displayName, teeShirtSize);
}
// TODO 3
// Save the entity in the datastore
ofy().save().entity(profile).now();