Is it possible to have multiple classes that inherit/extends same class in Google AppEngine with Java (GAE/J) for my entities (JDO). For example I have:
- Content (Abstract class)
- Course
and then my Course will have :
- list of Video that is extends Content
- list of Books
At the same time
- Video has list of Tags
- Book has list of Tags
- Course has list of Tags
Is it possible to do it GAE?
I'm doing similar to this but having so much problems. Is there any examples of this kind of stuff?