Subversion Repositories SmartDukaan

Rev

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

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE configuration
    PUBLIC "-//mybatis.org//DTD Config 3.0//EN"
    "http://mybatis.org/dtd/mybatis-3-config.dtd">

<configuration>
        <settings>
                <!-- changes from the defaults -->
                <setting name="lazyLoadingEnabled" value="false" />
        </settings>
        <typeAliases>
                <typeAlias alias="payment" type="in.shop2020.payment.domain.Payment" />
                <typeAlias alias="gateway" type="in.shop2020.payment.domain.PaymentGateway" />
                <typeAlias alias="paymentAttribute" type="in.shop2020.payment.domain.PaymentAttribute" />
                <typeAlias alias="gatewayAttribute" type="in.shop2020.payment.domain.GatewayAttribute" />
                
                <typeAlias alias="refund" type="in.shop2020.payment.domain.Refund" />
                <typeAlias alias="refundAttribute" type="in.shop2020.payment.domain.RefundAttribute" />
        </typeAliases>

</configuration>