summaryrefslogtreecommitdiffstats
path: root/sca-java-1.x/tags/1.6/tutorials/store/catalog-ejb/src/main/resources/META-INF/ejb-jar.xml
diff options
context:
space:
mode:
authorlresende <lresende@13f79535-47bb-0310-9956-ffa450edef68>2010-03-04 21:36:02 +0000
committerlresende <lresende@13f79535-47bb-0310-9956-ffa450edef68>2010-03-04 21:36:02 +0000
commit9440da155ff7229b7524bf72be516048535a9b43 (patch)
tree80508eaf2562fe23c04c107ab9bd51d82955e6bd /sca-java-1.x/tags/1.6/tutorials/store/catalog-ejb/src/main/resources/META-INF/ejb-jar.xml
parent76564ec53d91ba9086d7fc371b3f5b6d0b551526 (diff)
Official 1.6 release tag
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@919190 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r--sca-java-1.x/tags/1.6/tutorials/store/catalog-ejb/src/main/resources/META-INF/ejb-jar.xml35
1 files changed, 35 insertions, 0 deletions
diff --git a/sca-java-1.x/tags/1.6/tutorials/store/catalog-ejb/src/main/resources/META-INF/ejb-jar.xml b/sca-java-1.x/tags/1.6/tutorials/store/catalog-ejb/src/main/resources/META-INF/ejb-jar.xml
new file mode 100644
index 0000000000..a0a7adf6fa
--- /dev/null
+++ b/sca-java-1.x/tags/1.6/tutorials/store/catalog-ejb/src/main/resources/META-INF/ejb-jar.xml
@@ -0,0 +1,35 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements. See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with
+ the License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+<ejb-jar xmlns="http://java.sun.com/xml/ns/j2ee"
+ 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/ejb-jar_2_1.xsd"
+ version="2.1">
+
+ <display-name>Apache Tuscany SCA Tutorial Catalog EJB</display-name>
+ <enterprise-beans>
+ <session id="VegetablesCatalogEJB">
+ <ejb-name>VegetablesCatalogEJB</ejb-name>
+ <home>services.ejb.CatalogEJBHome</home>
+ <remote>services.ejb.CatalogEJBRemote</remote>
+ <ejb-class>services.ejb.VegetablesCatalogEJBSessionBean</ejb-class>
+ <session-type>Stateless</session-type>
+ <transaction-type>Container</transaction-type>
+ </session>
+ </enterprise-beans>
+</ejb-jar>