blob: 2ca2ebc23dff9305233838e8a3fc82658b0beb4b [file] [log] [blame]
Vinay Vishal57171472018-09-18 20:22:00 +05301<?xml version="1.0" encoding="UTF-8"?>
2<!--
3
4 Copyright (c) 2017, 2018 Oracle and/or its affiliates. All rights reserved.
5
6 This program and the accompanying materials are made available under the
7 terms of the Eclipse Public License v. 2.0, which is available at
8 http://www.eclipse.org/legal/epl-2.0.
9
10 This Source Code may also be made available under the following Secondary
11 Licenses when the conditions for such availability set forth in the
12 Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
13 version 2 with the GNU Classpath Exception, which is available at
14 https://www.gnu.org/software/classpath/license.html.
15
16 SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
17
18-->
19
20<!--
21<!DOCTYPE connector PUBLIC '-//Sun Microsystems, Inc.//DTD Connector 1.5//EN' 'http://java.sun.com/dtd/connector_1_5.dtd'>
22-->
23<connector xmlns="http://java.sun.com/xml/ns/j2ee"
24 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
25 xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee
26 http://java.sun.com/xml/ns/j2ee/connector_1_5.xsd"
27 version="1.5">
28 <display-name>Simple Resource Adapter</display-name>
29 <vendor-name>Java Software</vendor-name>
30 <eis-type>Generic Type</eis-type>
31 <resourceadapter-version>1.0Alpha</resourceadapter-version>
32 <resourceadapter>
33 <resourceadapter-class>
34 connector.SimpleResourceAdapterImpl
35 </resourceadapter-class>
36 <config-property>
37 <config-property-name>
38 TestName
39 </config-property-name>
40 <config-property-type>
41 java.lang.String
42 </config-property-type>
43 <config-property-value>
44 ConfigPropertyForRA
45 </config-property-value>
46 </config-property>
47 <inbound-resourceadapter>
48 <messageadapter>
49 <messagelistener>
50 <messagelistener-type>
51 connector.MyMessageListener
52 </messagelistener-type>
53 <activationspec>
54 <activationspec-class>
55 connector.SimpleActivationSpec
56 </activationspec-class>
57 </activationspec>
58 </messagelistener>
59 </messageadapter>
60 </inbound-resourceadapter>
61 <adminobject>
62 <adminobject-interface>connector.MyAdminObject</adminobject-interface>
63 <adminobject-class>connector.MyAdminObject</adminobject-class>
64 <config-property>
65 <config-property-name>ResetControl</config-property-name>
66 <config-property-type>java.lang.String</config-property-type>
67 <config-property-value>NORESET</config-property-value>
68 </config-property>
69 <config-property>
70 <config-property-name>ExpectedResult</config-property-name>
71 <config-property-type>java.lang.Integer</config-property-type>
72 <config-property-value>88</config-property-value>
73 </config-property>
74 </adminobject>
75 </resourceadapter>
76</connector>