Advertisement
Guest User

Untitled

a guest
Feb 20th, 2013
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.04 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <connector xmlns="http://java.sun.com/xml/ns/j2ee"
  3.   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4.   xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee
  5.   http://java.sun.com/xml/ns/j2ee/connector_1_5.xsd" version="1.5">
  6.  
  7.    <vendor-name>Test</vendor-name>
  8.    <eis-type>Test</eis-type>
  9.    <resourceadapter-version>1.0</resourceadapter-version>
  10.    <license>
  11.       <description>licenceeee</description>
  12.       <license-required>true</license-required>
  13.    </license>
  14.  
  15.    <resourceadapter>
  16.       <resourceadapter-class>org.jboss.teiid.connector.helloworld.HelloWorldResourceAdapter</resourceadapter-class>
  17.       <outbound-resourceadapter>
  18.          <connection-definition>
  19.             <managedconnectionfactory-class>org.jboss.teiid.connector.helloworld.HelloWorldManagedConnectionFactory</managedconnectionfactory-class>
  20.              
  21.             <!-- use the below as is if you used the Connection Factory interface -->
  22.             <connectionfactory-interface>
  23.                javax.resource.cci.ConnectionFactory
  24.             </connectionfactory-interface>
  25.  
  26.             <connectionfactory-impl-class>
  27.                org.teiid.resource.spi.WrappedConnectionFactory
  28.             </connectionfactory-impl-class>
  29.  
  30.             <connection-interface>
  31.                javax.resource.cci.Connection
  32.             </connection-interface>
  33.  
  34.             <connection-impl-class>
  35.                org.teiid.resource.spi.WrappedConnection
  36.             </connection-impl-class>
  37.  
  38.          </connection-definition>
  39.  
  40.          <transaction-support>NoTransaction</transaction-support>
  41.  
  42.          <authentication-mechanism>
  43.             <authentication-mechanism-type>BasicPassword</authentication-mechanism-type>
  44.             <credential-interface>
  45.                javax.resource.spi.security.PasswordCredential
  46.             </credential-interface>
  47.          </authentication-mechanism>
  48.          <reauthentication-support>false</reauthentication-support>
  49.  
  50.       </outbound-resourceadapter>
  51.  
  52.    </resourceadapter>
  53.  
  54. </connector>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement