Subversion Repositories SmartDukaan

Rev

Rev 1946 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1946 chandransh 1
<?xml version="1.0" encoding="UTF-8"?>
2
<!DOCTYPE configuration
3
    PUBLIC "-//mybatis.org//DTD Config 3.0//EN"
4
    "http://mybatis.org/dtd/mybatis-3-config.dtd">
5
 
6
<configuration>
7
	<settings>
8
		<!-- changes from the defaults -->
9
		<setting name="lazyLoadingEnabled" value="false" />
10
	</settings>
11
	<typeAliases>
12
		<typeAlias alias="payment" type="in.shop2020.payment.domain.Payment" />
13
		<typeAlias alias="gateway" type="in.shop2020.payment.domain.PaymentGateway" />
14
		<typeAlias alias="paymentAttribute" type="in.shop2020.payment.domain.PaymentAttribute" />
15
		<typeAlias alias="gatewayAttribute" type="in.shop2020.payment.domain.GatewayAttribute" />
2747 chandransh 16
 
17
		<typeAlias alias="refund" type="in.shop2020.payment.domain.Refund" />
18
		<typeAlias alias="refundAttribute" type="in.shop2020.payment.domain.RefundAttribute" />
1946 chandransh 19
	</typeAliases>
20
 
21
</configuration>