I've been looking over another Java project done at my company and in this project the developers created an interface for pretty much ever domain entity (there are hundreds). In some cases, I think the abstraction works, but in other cases it doesn't seem like it is need at this time.
Whenever instances are passed around they are always referred and access via the interface.
Is this bloat from too much future proofing? or is this sound engineering practice?