Is it possible/practical to have an Entity class without an underlying database available?
To contradict myself, I have a database(!) which can be accessed over jdbc, but it's proprietary and only supports a couple of methods - connect/disconnect/execute - no schema browsing, no metadata, or connecting through a tool - only code.
What I'd like to do is create a set of restful web services that access the database & those appear to need underlying Entity classes based on the database.
So, my question is if this is the right way to handle this situation? I'm reasonably new to these technologies so am probably struggling with design issues more - any articles I can read up on how to approach this would be great.
Many thanks