I'm having an issue where the getIdentifier() method is returning null on an entity with the id set. I have a class like this:
@MappedSuperclass
public class UuidEntity
{
@Id
private String id = UUID.randomUUID().toString();
}
My entities *always* have an id value. Shouldn't getIdentifier() always return
the value of the "id" field?
