Suppose you have a complex type
<xs:complexType name="RepeatingNormalizedStringType">
<xs:sequence>
<xs:element name="repeatingNormalizedString" type="xs:normalizedString" maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
JAXB maps the element repeatingNormalizedString to
@XmlElementRef(name = "repeatingNormalizedString", namespace = "urn:test", type = JAXBElement.class)
protected List<JAXBElement<String>> repeatingNormalizedString;
rather than
protected List<String> repeatingNormalizedString;
as you might expect.
This behaviour occurs with all subtypes of normalizedString. It also manifests when an element in a repeating group or sequence has type normalizedString, in these cases the group/sequence is collapsed to:
protected List<JAXBElement<?>> synthesisedGroupOrSequencePropertyName;
even when you would normally expect List<Object> or List<NearestCommonSupertype>.
I've read around the JAXB spec e.g. section 6.7, 6.12 but can't find any description of this situation.
My two questions:
- Why is this behaviour occuring? My guess is it is to do with the fact that
normalizedStringand its subtypes must have a type adapter applied to them. - Are there any other simple types with which this behaviour will occur?
Cheers,
Matthew