summaryrefslogtreecommitdiffstats
path: root/Master/Reference Architectures and Patterns/EJB 3.0 Code/Rima Examples/src/examples/integration/out_loan_ra/META-INF/ra.xml
blob: 7e08c79ea62bb7588f68a4f9b755dc12760a7dde (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?xml version='1.0' encoding='UTF-8'?>
<connector
        xmlns="http://java.sun.com/xml/ns/j2ee"
        version="1.5"
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/connector_1_5.xsd"
        >
    <display-name>OutboundLoanRa</display-name>
    <vendor-name>Vendor Name</vendor-name>
    <eis-type>EIS Type</eis-type>
    <resourceadapter-version>1.5</resourceadapter-version>
    <license>
        <license-required>false</license-required>
    </license>
    <resourceadapter>
        <outbound-resourceadapter>
            <connection-definition>
                <managedconnectionfactory-class>examples.integration.out_loan_ra.ManagedConnectionFactoryImpl</managedconnectionfactory-class>
                <connectionfactory-interface>javax.resource.cci.ConnectionFactory</connectionfactory-interface>
                <connectionfactory-impl-class>examples.integration.out_loan_ra.ConnectionFactoryImpl</connectionfactory-impl-class>
                <connection-interface>javax.resource.cci.Connection</connection-interface>
                <connection-impl-class>examples.integration.out_loan_ra.ConnectionImpl</connection-impl-class>
            </connection-definition>
            <transaction-support>LocalTransaction</transaction-support>
            <reauthentication-support>false</reauthentication-support>
        </outbound-resourceadapter>
    </resourceadapter>
</connector>