1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
<!-- This is an alternate simple example binding for using the hashmap custom
marshaller/unmarshaller. Here the custom marshaller/unmarshaller is defined
directly by the <structure> element that references the "customerMap" field of
the Directory class. Any other instances of HashMap handled by the binding
would also need to reference the marshaller/unmarshaller class directly. -->
<binding>
<mapping name="directory" class="example21.Directory">
<structure field="customerMap" name="map"
marshaller="example21.HashMapper" unmarshaller="example21.HashMapper"/>
</mapping>
<mapping name="customer" class="example21.Customer" value-style="attribute">
<structure name="name" field="name">
<value name="first-name" field="firstName"/>
<value name="last-name" field="lastName"/>
</structure>
<value name="street" field="street" style="element"/>
<value name="city" field="city" style="element"/>
<value name="state" field="state"/>
<value name="zip" field="zip"/>
</mapping>
</binding>
|