<?xml version="1.0" encoding="UTF-8"?>
<!--
 Copyright 2006 The Apache Software Foundation.
 
 Licensed under the Apache License, Version 2.0 (the "License");
 you may not use this file except in compliance with the License.
 You may obtain a copy of the License at
 
 http://www.apache.org/licenses/LICENSE-2.0
 
 Unless required by applicable law or agreed to in writing, software
 distributed under the License is distributed on an "AS IS" BASIS,
 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 See the License for the specific language governing permissions and
 limitations under the License.
-->
<persistence xmlns="http://java.sun.com/xml/ns/persistence"
             xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
             version="1.0">
<persistence-unit name="IBM Internet Security Systems Remedy JPA" transaction-type="RESOURCE_LOCAL">
        <!--
            The default provider can be OpenJPA, or some other product.
            This element is optional if OpenJPA is the only JPA provider
            in the current classloading environment.
        -->
        <provider>
            org.apache.openjpa.persistence.PersistenceProviderImpl
        </provider>

        <!-- We must enumerate each entity in the persistence unit -->
        <class>net.iss.mss.jpa.examples.remedy.Customer</class>
        <class>net.iss.mss.jpa.examples.remedy.User</class>

        <properties>

            <property name="openjpa.ConnectionURL"
                      value="c:\MSS_Development\Projects\trunk\jpa\remedyData"/>

            <property name="org.apache.openjpa.abstractstore.AbstractStoreManager"
                      value="org.apache.openjpa.xmlstore.XMLStoreManager"/>

            <property name="openjpa.BrokerFactory"
                      value="abstractstore"/>

        </properties>
    </persistence-unit>
</persistence>
