Hey John,
Yes and no. In order to store something into the datastore, it needs
to be serialized and, thus, serializable. Having a class 'implement
Serializable' flags it as having that property (according to Java),
however there are still many things that can cause the serialization
process to f
Meaning:
@PersistenceCapable(identityType = IdentityType.APPLICATION)
public class Location implements Serializable {
@PrimaryKey
@Persistent(valueStrategy = IdGeneratorStrategy.IDENTITY)
private Long id;
@Persistent
private Long deptId;
So simply adding th
Does it "implements Serializable" ? No.
--
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 google-appengine-j...@googlegroups.com.
To unsubscribe from this group, send email to
google-appengine-ja