13 lines
829 B
XML
13 lines
829 B
XML
|
|
<?xml version="1.0"?>
|
||
|
|
<!-- com.foundation.transaction.test.TestApplication -->
|
||
|
|
<repository name='MySQL' class='com.foundation.transaction.jdbc.mysql.MySQLRepositoryManager'>
|
||
|
|
<properties user-name='test' user-password='test' database-url='jdbc:mysql://localhost/test'/>
|
||
|
|
<class class-name='com.foundation.transaction.test.TestObject' repository-name='TEST_OBJECT'>
|
||
|
|
<attribute attribute-name='number' repository-name='NUMBER' repository-type='INTEGER'/>
|
||
|
|
<attribute attribute-name='text' repository-name='TEXT' repository-type='VARCHAR'/>
|
||
|
|
<attribute attribute-name='id' repository-name='ID' repository-type='INTEGER' is-key='true' is-auto-generated='true'/>
|
||
|
|
<attribute attribute-name='fixedSizeData' attribute-type='byte[]' repository-name='FIXED_SIZE_DATA' repository-type='BLOB'/>
|
||
|
|
<properties/>
|
||
|
|
</class>
|
||
|
|
</repository>
|