buildframework/helium/sf/java/jpa/src/META-INF/persistence.xml
changeset 640 ac0bbc1e5d79
parent 639 0e65f93be3cb
parent 633 a4eca1f021ac
child 641 8dd670a9f34f
child 656 88e01c8f013e
equal deleted inserted replaced
639:0e65f93be3cb 640:ac0bbc1e5d79
     1 <?xml version="1.0" encoding="UTF-8"?>
       
     2 <!-- 
       
     3 ============================================================================ 
       
     4 Name        : persistence.xml 
       
     5 Part of     : Helium 
       
     6 
       
     7 Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
       
     8 All rights reserved.
       
     9 This component and the accompanying materials are made available
       
    10 under the terms of the License "Eclipse Public License v1.0"
       
    11 which accompanies this distribution, and is available
       
    12 at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
    13 
       
    14 Initial Contributors:
       
    15 Nokia Corporation - initial contribution.
       
    16 
       
    17 Contributors:
       
    18 
       
    19 Description:
       
    20 
       
    21 ============================================================================
       
    22 -->
       
    23 <persistence xmlns="http://java.sun.com/xml/ns/persistence"
       
    24                 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       
    25                 xsi:schemaLocation="http://java.sun.com/xml/ns/persistence persistence_2_0.xsd"
       
    26                 version="2.0">
       
    27     <persistence-unit name="metadata" transaction-type="RESOURCE_LOCAL">
       
    28         <provider>org.eclipse.persistence.jpa.PersistenceProvider</provider>
       
    29           <properties>
       
    30                 <!-- <property name="eclipselink.logging.level" value="ALL" /> -->
       
    31            </properties>
       
    32             <class>com.nokia.helium.jpa.entity.metadata.LogFile</class>
       
    33             <class>com.nokia.helium.jpa.entity.metadata.Priority</class>
       
    34             <class>com.nokia.helium.jpa.entity.metadata.Component</class>
       
    35             <class>com.nokia.helium.jpa.entity.metadata.Metadata</class>
       
    36             <class>com.nokia.helium.jpa.entity.metadata.MetadataEntry</class>
       
    37             <class>com.nokia.helium.jpa.entity.metadata.ComponentTime</class>
       
    38             <class>com.nokia.helium.jpa.entity.metadata.WhatLogEntry</class>
       
    39             <class>com.nokia.helium.jpa.entity.metadata.ExecutionTime</class>
       
    40             <class>com.nokia.helium.jpa.entity.Version</class>
       
    41     </persistence-unit>
       
    42 </persistence>