public class Party {
    @PrimaryKey
    @Persistent(valueStrategy = IdGeneratorStrategy.IDENTITY)
    @Extension(vendorName="datanucleus", key="gae.encoded-pk", value="true")
    private String id;
    @Persistent
    private PartyUserLogin userLogin;

    @Persistent
    private List<PartyUserLogin> collaborators;

    @Persistent
    private List<PartyUserLogin> viewers;
}

I write a simple test case and I get the following error

Error in meta-data for com.veersoft.party.Party.userLogin: Class
com.veersoft.party.Party has multiple relationship fields of type
com.veersoft.party.PartyUserLogin: userLogin and collaborators.  This is not
yet supported.

When will this be supported?

-Aswath

-- 
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-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.

Reply via email to