Java1.7.0_02で実行されるNetBeans7.1.2を使用して生成されたコード。
単純な型をJavaクラスにマップする場合、1つの方法はグローバルに設定することですmapSimpleTypeDef="true"
<xsd:annotation>
<xsd:appinfo>
<jaxb:globalBindings mapSimpleTypeDef="true"/>
</xsd:appinfo>
</xsd:annotation>
生成されたコード:
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SomeMessage")
public class SomeMessage {
@XmlAttribute(name = "customIds")
protected List<CustomId> customIds;
/**
* Gets the value of the customIds property.
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link CustomId }
*
*
*/
public List<CustomId> getCustomIds() {
if (customIds == null) {
customIds = new ArrayList<CustomId>();
}
return this.customIds;
}
}
既存のCustomIdクラスを参照する場合、私の場合は次のように機能します。
<xsd:simpleType name="customId">
<xsd:restriction base="xsd:int"/>
</xsd:simpleType>
<xsd:complexType name="SomeMessage">
<xsd:attribute name="customIds" use="optional">
<xsd:simpleType>
<xsd:annotation>
<xsd:appinfo>
<jaxb:javaType name="java.util.List<com.company.identifiers.CustomId>" parseMethod="Class1.fromString" printMethod="Class1.toString"/>
</xsd:appinfo>
</xsd:annotation>
<xsd:list itemType="customId"/>
</xsd:simpleType>
</xsd:attribute>
</xsd:complexType>
次のようになります。
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SomeMessage")
public class SomeMessage {
@XmlAttribute(name = "customIds")
@XmlJavaTypeAdapter(Adapter1 .class)
protected List<CustomId> customIds;
/**
* Gets the value of the customIds property.
*
* @return
* possible object is
* {@link String }
*
*/
public List<CustomId> getCustomIds() {
return customIds;
}
/**
* Sets the value of the customIds property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCustomIds(List<CustomId> value) {
this.customIds = value;
}
}
そして、生成されたAdapter1:
public class Adapter1
extends XmlAdapter<String, List<CustomId>>
{
public List<CustomId> unmarshal(String value) {
return (Class1.fromString(value));
}
public String marshal(List<CustomId> value) {
return (Class1.toString(value));
}
}