blob: 3cde4cf89644cff773ed905b25cd6376407495fa [file] [log] [blame]
<entity-mappings xmlns="http://www.eclipse.org/eclipselink/xsds/persistence/orm" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
version="2.4"
xsi:schemaLocation="http://www.eclipse.org/eclipselink/xsds/persistence/orm http://www.eclipse.org/eclipselink/xsds/eclipselink_orm_2_4.xsd">
<named-query name="Person.findAll">
<query>select p from Person p</query>
</named-query>
<entity access="VIRTUAL" class="Person">
<no-sql data-format="MAPPED" data-type="person"/>
<attributes>
<id attribute-type="java.lang.String" name="id">
<field name="_id"/>
</id>
<basic attribute-type="java.lang.String" name="currentemployer">
<field name="currentEmployer"/>
</basic>
<basic attribute-type="java.lang.String" name="lastname">
<field name="lastName"/>
</basic>
<basic attribute-type="java.lang.String" name="occupation">
<field name="occupation"/>
</basic>
<basic attribute-type="java.lang.Integer" name="age">
<field name="age"/>
</basic>
<basic attribute-type="java.lang.String" name="firstname">
<field name="firstName"/>
</basic>
<basic attribute-type="java.lang.Boolean" name="employed">
<field name="employed"/>
</basic>
<element-collection attribute-type="java.util.Vector" name="pastEmployers" target-class="java.lang.String">
<field name="pastEmployers"/>
</element-collection>
<element-collection attribute-type="java.util.Vector" name="addresses" target-class="Addresses">
<field name="addresses"/>
</element-collection>
</attributes>
</entity>
<embeddable access="VIRTUAL" class="Addresses">
<no-sql data-format="MAPPED"/>
<attributes>
<basic attribute-type="java.lang.String" name="street2">
<field name="street2"/>
</basic>
<basic attribute-type="java.lang.Integer" name="zip">
<field name="zip"/>
</basic>
<basic attribute-type="java.lang.String" name="street1">
<field name="street1"/>
</basic>
<basic attribute-type="java.lang.String" name="state">
<field name="state"/>
</basic>
<basic attribute-type="java.lang.String" name="city">
<field name="city"/>
</basic>
</attributes>
</embeddable>
</entity-mappings>