I am studying an existing project, and in the model, objects have an encoded key and a key name :
@PrimaryKey
@Persistent(valueStrategy = IdGeneratorStrategy.IDENTITY)
@Extension(vendorName="datanucleus", key="gae.encoded-pk", value="true")
private String encodedKey;
@Persistent
@Extension(vendorName="datanucleus", key="gae.pk-name", value="true")
private String userId;
and then to get an object from the datastore, getObjectById is used, but sometimes with the userId, sometimes with the encoded key. Why ?
Thx