| Summary: | MOXy Extensions: Add support for embedded id class. | ||
|---|---|---|---|
| Product: | z_Archived | Reporter: | David McCann <david.mccann> |
| Component: | Eclipselink | Assignee: | Nobody - feel free to take it <nobody> |
| Status: | CLOSED INVALID | QA Contact: | |
| Severity: | enhancement | ||
| Priority: | P3 | ||
| Version: | unspecified | ||
| Target Milestone: | --- | ||
| Hardware: | PC | ||
| OS: | Windows XP | ||
| Whiteboard: | |||
We will not be supporting this feature. The Eclipselink project has moved to Github: https://github.com/eclipse-ee4j/eclipselink |
We should support the concept of an embedded id class, similar to what is supported in JPA. Something like: public class Employee { @XmlEmbeddedId public EmployeeId empId; ... } public class EmployeeId { @XmlID public String id; ... }