You are on page 1of 1

<?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="mamutpuv2">
<!-- If you are running in a production environment, add a managed data
source, this example data source is just for development and
testing! -->
<!-- The datasource is deployed as WEB-INF/wallypos-ds.xml, you can
find
it in the source at src/main/webapp/WEB-INF/wallypos-ds.xml -->
<jta-data-source>java:jboss/datasources/wallyposDS</jta-data-source>

<class>pe.beyond.wally.model.security.entity.MyUserTypeEntity</class>

<class>org.picketlink.idm.jpa.model.sample.simple.AttributedTypeEntity</class>

<class>org.picketlink.idm.jpa.model.sample.simple.RoleTypeEntity</class>

<class>org.picketlink.idm.jpa.model.sample.simple.GroupTypeEntity</class>

<class>org.picketlink.idm.jpa.model.sample.simple.IdentityTypeEntity</class>

<class>org.picketlink.idm.jpa.model.sample.simple.RelationshipTypeEntity</class>

<class>org.picketlink.idm.jpa.model.sample.simple.RelationshipIdentityTypeEntity</c
lass>

<class>org.picketlink.idm.jpa.model.sample.simple.PartitionTypeEntity</class>

<class>org.picketlink.idm.jpa.model.sample.simple.AttributeTypeEntity</class>

<class>org.picketlink.idm.jpa.model.sample.simple.PasswordCredentialTypeEntity</cla
ss>

<class>org.picketlink.idm.jpa.model.sample.simple.TokenCredentialTypeEntity</class>

<properties>
<!-- Properties for Hibernate -->
<property name="hibernate.hbm2ddl.auto" value="update" />
<property name="hibernate.show_sql" value="false" />
<property name="hibernate.format_sql" value="false" />
<property name="hibernate.dialect"
value="org.hibernate.dialect.MySQL5InnoDBDialect" />
</properties>
</persistence-unit>
</persistence>

You might also like