| <!-- |
| |
| Copyright (c) 2018, 2020 Oracle and/or its affiliates. All rights reserved. |
| |
| This program and the accompanying materials are made available under the |
| terms of the Eclipse Public License v. 2.0 which is available at |
| http://www.eclipse.org/legal/epl-2.0, |
| or the Eclipse Distribution License v. 1.0 which is available at |
| http://www.eclipse.org/org/documents/edl-v10.php. |
| |
| SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause |
| |
| --> |
| |
| <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"> |
| <package>org.eclipse.persistence.jpars.test.model.dynamic.place</package> |
| <named-query name="Place.findAll"> |
| <query>select p from Place p</query> |
| </named-query> |
| <entity access="VIRTUAL" class="Place"> |
| <no-sql data-format="MAPPED" data-type="place"/> |
| <attributes> |
| <id attribute-type="java.lang.String" name="id"> |
| <field name="_id"/> |
| </id> |
| <basic attribute-type="java.lang.String" name="state"> |
| <field name="state"/> |
| </basic> |
| <basic attribute-type="java.lang.Integer" name="pop"> |
| <field name="pop"/> |
| </basic> |
| <basic attribute-type="java.lang.String" name="city"> |
| <field name="city"/> |
| </basic> |
| </attributes> |
| </entity> |
| </entity-mappings> |