Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a class as follows

public class A{
    private MyClass myClass;
    @Embedded
    private MyClass2 myClass2;
}

To have a composite key for class A, I'll have to have an object-id class for MyClass which I know how to do but I don't know how to also have a 3 key from the @Embedded element !

Like:

@PersistenceCapable(objectId=A.PK.class)
public class A{
    public static class PK implements Serializable{
        public MyClass.PK myClass;
        // A key to point only to one field of myClass2 ???
    }
    private MyClass myClass;
    @Embedded
    private MyClass2 myClass2;
}

Thank you.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.