]> git.mxchange.org Git - jfinancials-ejb.git/commitdiff
Continued:
authorRoland Häder <roland@mxchange.org>
Thu, 23 Apr 2020 19:59:42 +0000 (21:59 +0200)
committerRoland Häder <roland@mxchange.org>
Thu, 23 Apr 2020 19:59:42 +0000 (21:59 +0200)
- fixed JPA persistence unit file, RoyalityCard enity was missing

Signed-off-by: Roland Häder <roland@mxchange.org>
src/conf/persistence.xml

index 0e197d389e0e0d602f0a883338fb6d2553a07c94..e69b4188423272fe107215d5544639074fa0faf1 100644 (file)
@@ -1,34 +1,35 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <persistence version="2.1" xmlns="http://xmlns.jcp.org/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/persistence http://xmlns.jcp.org/xml/ns/persistence/persistence_2_1.xsd">
-  <persistence-unit name="jfinancials-ejbPU" transaction-type="JTA">
-    <jta-data-source>jdbc/jfinancials</jta-data-source>
-    <class>org.mxchange.jcontacts.model.contact.UserContact</class>
-    <class>org.mxchange.jcontactsbusiness.model.basicdata.BusinessBasicData</class>
-    <class>org.mxchange.jcontactsbusiness.model.branchoffice.BusinessBranchOffice</class>
-    <class>org.mxchange.jcontactsbusiness.model.department.BusinessDepartment</class>
-    <class>org.mxchange.jcontactsbusiness.model.employee.BusinessEmployee</class>
-    <class>org.mxchange.jcontactsbusiness.model.headquarter.BusinessHeadquarter</class>
-    <class>org.mxchange.jcontactsbusiness.model.jobposition.EmployeePosition</class>
-    <class>org.mxchange.jcontactsbusiness.model.logo.BusinessLogo</class>
-    <class>org.mxchange.jcontactsbusiness.model.opening_time.BusinessOpeningTime</class>
-    <class>org.mxchange.jcountry.model.data.CountryData</class>
-    <class>org.mxchange.jfinancials.model.income.FinancialIncome</class>
-    <class>org.mxchange.jfinancials.model.receipt.FinancialReceipt</class>
-    <class>org.mxchange.jfinancials.model.receipt_item.FinancialReceiptItem</class>
-    <class>org.mxchange.jphone.model.phonenumbers.fax.FaxNumber</class>
-    <class>org.mxchange.jphone.model.phonenumbers.landline.LandLineNumber</class>
-    <class>org.mxchange.jphone.model.phonenumbers.mobile.MobileNumber</class>
-    <class>org.mxchange.jphone.model.phonenumbers.mobileprovider.CellphoneProvider</class>
-    <class>org.mxchange.jproduct.model.category.ProductCategory</class>
-    <class>org.mxchange.jproduct.model.product.GenericProduct</class>
-    <class>org.mxchange.jusercore.model.email_address.EmailAddressChange</class>
-    <class>org.mxchange.jusercore.model.user.LoginUser</class>
-    <class>org.mxchange.jusercore.model.user.activity.UserActivityLog</class>
-    <class>org.mxchange.jusercore.model.user.password_history.UserPasswordHistory</class>
-    <class>org.mxchange.jcustomercore.model.customer.ContactCustomer</class>
-    <class>org.mxchange.jfinancials.model.bonus_card.FinancialBonusCard</class>
-    <exclude-unlisted-classes>false</exclude-unlisted-classes>
-    <properties>
-    </properties>
-  </persistence-unit>
+       <persistence-unit name="jfinancials-ejbPU" transaction-type="JTA">
+               <description>Main persistence unit file.</description>
+               <jta-data-source>jdbc/jfinancials</jta-data-source>
+               <class>org.mxchange.jbonuscard.model.bonus_card.RoyalityCard</class>
+               <class>org.mxchange.jcontacts.model.contact.UserContact</class>
+               <class>org.mxchange.jcontactsbusiness.model.basicdata.BusinessBasicData</class>
+               <class>org.mxchange.jcontactsbusiness.model.branchoffice.BusinessBranchOffice</class>
+               <class>org.mxchange.jcontactsbusiness.model.department.BusinessDepartment</class>
+               <class>org.mxchange.jcontactsbusiness.model.employee.BusinessEmployee</class>
+               <class>org.mxchange.jcontactsbusiness.model.headquarter.BusinessHeadquarter</class>
+               <class>org.mxchange.jcontactsbusiness.model.jobposition.EmployeePosition</class>
+               <class>org.mxchange.jcontactsbusiness.model.logo.BusinessLogo</class>
+               <class>org.mxchange.jcontactsbusiness.model.opening_time.BusinessOpeningTime</class>
+               <class>org.mxchange.jcountry.model.data.CountryData</class>
+               <class>org.mxchange.jcustomercore.model.customer.ContactCustomer</class>
+               <class>org.mxchange.jfinancials.model.income.FinancialIncome</class>
+               <class>org.mxchange.jfinancials.model.receipt.FinancialReceipt</class>
+               <class>org.mxchange.jfinancials.model.receipt_item.FinancialReceiptItem</class>
+               <class>org.mxchange.jphone.model.phonenumbers.fax.FaxNumber</class>
+               <class>org.mxchange.jphone.model.phonenumbers.landline.LandLineNumber</class>
+               <class>org.mxchange.jphone.model.phonenumbers.mobile.MobileNumber</class>
+               <class>org.mxchange.jphone.model.phonenumbers.mobileprovider.CellphoneProvider</class>
+               <class>org.mxchange.jproduct.model.category.ProductCategory</class>
+               <class>org.mxchange.jproduct.model.product.GenericProduct</class>
+               <class>org.mxchange.jusercore.model.email_address.EmailAddressChange</class>
+               <class>org.mxchange.jusercore.model.user.LoginUser</class>
+               <class>org.mxchange.jusercore.model.user.activity.UserActivityLog</class>
+               <class>org.mxchange.jusercore.model.user.password_history.UserPasswordHistory</class>
+               <exclude-unlisted-classes>false</exclude-unlisted-classes>
+               <properties>
+               </properties>
+       </persistence-unit>
 </persistence>