[appengine-java] Hooks and Inheritance

2010-10-19 Thread gbougeard
Hi, I created the following class : package com.maskhot.fam.model; import java.io.Serializable; import java.util.Date; import javax.jdo.annotations.Column; import javax.jdo.annotations.IdGeneratorStrategy; import javax.jdo.annotations.IdentityType; import javax.jdo.annotations.Inheritance;

[appengine-java] JDO Modeling

2010-09-07 Thread gbougeard
Hi, I'm trying to modelize with JDO but after a long experience on Oracle it's quite a tough stuff :) Here is my simple Test case : I made a ModelBase entity with a pk (as encoded string) and two date fields (created and updated). The two fields will be filled through hooks. I have a first