13 lines
694 B
XML
13 lines
694 B
XML
|
|
<?xml version="1.0"?>
|
||
|
|
<!--
|
||
|
|
<repository name='MYSQL' class='com.foundation.transaction.jdbc.mysql.MySQLRepositoryManager'>
|
||
|
|
<properties user-name='my_user_name' user-password='my_password' database-url='jdbc:mysql://localhost/my_database'/>
|
||
|
|
|
||
|
|
<class class-name='com.eua.model.User' repository-name='USER'>
|
||
|
|
<attribute attribute-name='id' repository-name='ID' repository-type='INTEGER' is-key='true' is-auto-generated='true'/>
|
||
|
|
<attribute attribute-name='name' attribute-type='String' repository-name='NAME' repository-type='VARCHAR'/>
|
||
|
|
<attribute attribute-name='password' attribute-type='String' repository-name='PASSWORD' repository-type='BLOB'/>
|
||
|
|
<properties/>
|
||
|
|
</class>
|
||
|
|
</repository>
|
||
|
|
-->
|