| Summary: | get-method and set-method should not be required in oxm.xml schema | ||||||||
|---|---|---|---|---|---|---|---|---|---|
| Product: | z_Archived | Reporter: | Blaise Doughan <blaise.doughan> | ||||||
| Component: | Eclipselink | Assignee: | Nobody - feel free to take it <nobody> | ||||||
| Status: | RESOLVED FIXED | QA Contact: | |||||||
| Severity: | normal | ||||||||
| Priority: | P3 | CC: | eclipselink.oxm-inbox | ||||||
| Version: | unspecified | ||||||||
| Target Milestone: | --- | ||||||||
| Hardware: | PC | ||||||||
| OS: | Windows XP | ||||||||
| Whiteboard: | |||||||||
| Attachments: |
|
||||||||
Created attachment 195252 [details]
Proposed fix.
Created attachment 195253 [details]
Modified test cases.
Reviewed by: blaise.doughan@oracle.com Tests: all unit tests pass as expected; jaxb/externalizedmetadata/mappings/composite/CompositeMappingTestCases; jaxb/externalizedmetadata/mappings/compositecollection/CompositeCollecitonMappingTestCases The Eclipselink project has moved to Github: https://github.com/eclipse-ee4j/eclipselink |
The following: <xs:element name="xml-access-methods" type="xml-access-methods" /> <xs:complexType name="xml-access-methods"> <xs:attribute name="get-method" type="xs:string" use="required"/> <xs:attribute name="set-method" type="xs:string" use="required"/> </xs:complexType> Should be changed to: <xs:element name="xml-access-methods" type="xml-access-methods" /> <xs:complexType name="xml-access-methods"> <xs:attribute name="get-method" type="xs:string"/> <xs:attribute name="set-method" type="xs:string"/> </xs:complexType>