I assume the situation is this:
I have a class com.peter.Foo that I continue to use JDO and I want to change it to com.nick.Foo, will all my existing Foo objects be updated? In other words, does JDO use package names when mapping a java class to a data warehouse type?
AFAIK, JDO tools in appengine use only the class name. I will say this because when I look in the admin console, the statistics of the dataviewer and datastore refer to my entities only by class name. Therefore, if you keep the class names the same and change the package names, your objects should be in order.
source share