> Is there any possibility to mark field as serialized if it has as type > certain interface?
DataNucleus 2.x certainly allows that. No idea if the (old) version that GAE/J comes with supports that. > Another question: why jdo annotation @serialized doesn't work? If I > mark field as @serialized without other annotation, it doesn't stored > at data store anymore. Why should it ? The field type is not, by default, persistent, hence it is not persisted. So you have to add @Persistent to make it persistent. As per the definition of @Serialized -- You received this message because you are subscribed to the Google Groups "Google App Engine for Java" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-appengine-java?hl=en.
