/jboss-as-7.1.1.Final/testsuite/integration/basic/src/test/java/org/jboss/as/test/integration/ee/altdd/ejb-jar.xml
XML | 42 lines | 20 code | 1 blank | 21 comment | 0 complexity | 826c362e9ff31874d7d9461b90003d72 MD5 | raw file
Possible License(s): LGPL-2.1, Apache-2.0
1<?xml version="1.1" encoding="UTF-8"?>
2<!--
3 ~ JBoss, Home of Professional Open Source.
4 ~ Copyright 2010, Red Hat, Inc., and individual contributors
5 ~ as indicated by the @author tags. See the copyright.txt file in the
6 ~ distribution for a full listing of individual contributors.
7 ~
8 ~ This is free software; you can redistribute it and/or modify it
9 ~ under the terms of the GNU Lesser General Public License as
10 ~ published by the Free Software Foundation; either version 2.1 of
11 ~ the License, or (at your option) any later version.
12 ~
13 ~ This software is distributed in the hope that it will be useful,
14 ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
15 ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 ~ Lesser General Public License for more details.
17 ~
18 ~ You should have received a copy of the GNU Lesser General Public
19 ~ License along with this software; if not, write to the Free
20 ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
21 ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
22 -->
23<ejb-jar xmlns="http://java.sun.com/xml/ns/javaee"
24 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
25 xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/ejb-jar_3_1.xsd"
26 version="3.1">
27 <enterprise-beans>
28 <session>
29 <ejb-name>AltDDEjb</ejb-name>
30 <env-entry>
31 <env-entry-name>test</env-entry-name>
32 <env-entry-type>java.lang.String</env-entry-type>
33 <env-entry-value>standard</env-entry-value>
34 <injection-target>
35 <injection-target-class>org.jboss.as.test.integration.ee.altdd.AltDDEjb</injection-target-class>
36 <injection-target-name>value</injection-target-name>
37 </injection-target>
38 </env-entry>
39 </session>
40 </enterprise-beans>
41</ejb-jar>
42