I was tidying up some classes in my com.business.model package and realised every one of them was either directly annotated @Entity or was attached to one (I'm using Morphia). It occurred to me that the classes should actually be put in a com.business.entity package...
If this is more accurate (is it?) should I be putting my business logic classes into com.business.model and calling those from my jax-rs and jax-ws classes?
All my business logic classes are in the com.business package at present, which feels a rather anonymous place to be. Perhaps they are actually the models..?
(Note this project does not (yet) have a browser interface that a human would interact with, so referring to MVC would be somewhat premature.)