1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
|
<!-- binding testing abstract mappings, labeled structure components, source
location tracking, constant use -->
<binding track-source="true">
<namespace prefix="xsi" uri="http://www.w3.org/2001/XMLSchema-instance"/>
<mapping abstract="true" class="simple.Customer5Base">
<structure name="name" field="name" label="name-reference">
<value name="first-name" field="firstName"/>
<value name="last-name" field="lastName"/>
</structure>
<value name="street1" field="street1"/>
<value name="city" field="city"/>
<value name="state" field="state"/>
<value name="zip" field="zip"/>
<value name="phone" field="phone"/>
</mapping>
<mapping name="customer" class="simple.Customer5" value-style="attribute"
extends="simple.Customer5Base">
<value name="nil" ns="http://www.w3.org/2001/XMLSchema-instance"
constant="false" usage="optional"/>
<structure label="customer5-definition">
<structure map-as="simple.Customer5Base"/>
<value name="version" constant="1.0"/>
<value name="subversion" constant="A" style="element" usage="optional"/>
<value name="customer-id" field="customerId"/>
<value name="repeat-customer" field="repeat" default="false"/>
<value name="order-count" field="orderCount" default="0"/>
<value name="discount" field="discount" default="1.0"/>
<collection usage="optional" field="referrals">
<structure map-as="simple.Customer5a" usage="optional"/>
<structure map-as="simple.Customer5b" usage="optional"/>
<structure map-as="simple.Customer5c"/>
</collection>
</structure>
</mapping>
<mapping name="customer5a" class="simple.Customer5a"
extends="simple.Customer5Base">
<value name="source" field="sourceCode"/>
<structure map-as="simple.Customer5Base"/>
</mapping>
<mapping name="customer5b" class="simple.Customer5b"
extends="simple.Customer5Base">
<structure map-as="simple.Customer5Base"/>
</mapping>
<mapping name="customer5c" class="simple.Customer5c"
extends="simple.Customer5Base">
<structure using="customer5-definition"/>
<value name="quality" field="qualityCode"/>
</mapping>
</binding>
|