/**
* Create restrictions, projections and specify order for a property of an audited entity.
* @param propertyName Name of the property.
*/
public static AuditProperty<Object> property(String propertyName) {
return new AuditProperty<Object>(new EntityPropertyName(propertyName));
}