*/
private void makeFieldPersistent(String fieldName, ClassTransformation transformation,
MutableComponentModel model)
{
String fieldType = transformation.getFieldType(fieldName);
Persist annotation = transformation.getFieldAnnotation(fieldName, Persist.class);
transformation.claimField(fieldName, annotation);
// Record the type of persistence, until needed later.
String logicalFieldName = model.setFieldPersistenceStrategy(fieldName, annotation.value());
String defaultValue = TransformUtils.getDefaultValue(fieldType);
// Force the field back to its default value (null, 0, false) at the end of each request.