KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > easybeans > tests > common > ejbs > stateful > containermanaged > xmldescriptor > SFSBXmlDescriptorTester01


1 /**
2  * EasyBeans
3  * Copyright (C) 2006 Bull S.A.S.
4  * Contact: easybeans@objectweb.org
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
19  * USA
20  *
21  * --------------------------------------------------------------------------
22  * $Id: SFSBXmlDescriptorTester01.java 772 2006-06-26 09:24:37Z pinheirg $
23  * --------------------------------------------------------------------------
24  */

25 package org.objectweb.easybeans.tests.common.ejbs.stateful.containermanaged.xmldescriptor;
26
27 import javax.ejb.EJB JavaDoc;
28 import javax.ejb.Remote JavaDoc;
29 import javax.ejb.Stateful JavaDoc;
30 import javax.naming.NamingException JavaDoc;
31 import javax.transaction.NotSupportedException JavaDoc;
32 import javax.transaction.SystemException JavaDoc;
33
34 import org.objectweb.easybeans.tests.common.ejbs.base.xmldescriptor.ItfBasicBeanLocal;
35 import org.objectweb.easybeans.tests.common.helper.EJBHelper;
36
37 /**
38  * Bean used to test if the container verifies the deployment descriptor.
39  * @author Gisele Pinheiro Souza
40  * @author Eduardo Studzinski Estima de Castro
41  */

42 @Stateful JavaDoc
43 @Remote JavaDoc(ItfXmlDescriptorTester.class)
44 public class SFSBXmlDescriptorTester01 implements ItfXmlDescriptorTester {
45
46     /**
47      * The stateful bean that has the ejb name defined by deployment descriptor.
48      */

49     @EJB JavaDoc(beanName = "SFSBBasicBeanByXMLLocal")
50     private ItfBasicBeanLocal sfsbLocal;
51
52     /**
53      * Verifies if the bean that is defined as stateful in the deployment
54      * descriptor is actually a stateful. The method must run correctly if the
55      * bean is stateful.
56      * @throws NamingException if a problem to get the transaction occurs.
57      * @throws NotSupportedException if the bean is already associated with a
58      * transaction.
59      * @throws SystemException if an unexpected error occurs during the
60      * transaction.
61      */

62     public void verifyBeanTypeElement() throws NamingException JavaDoc, NotSupportedException JavaDoc, SystemException JavaDoc {
63         sfsbLocal.openTransaction();
64     }
65
66     /**
67      * Verifies if the bean has actually a BMT when it has the transaction type
68      * defined as BMT in the deployment descriptor.
69      * @throws Exception if an error occurs.
70      */

71     public void verifyBMT() throws Exception JavaDoc {
72         sfsbLocal.verifyBMT();
73     }
74
75     /**
76      * Verifies if it is possible to get a bean(stateful) by the mappedName
77      * defined in the deployment descriptor.
78      * @throws Exception if an error during the lookup occurs.
79      */

80     public void verifyBeanMappedName() throws Exception JavaDoc {
81         ItfBasicBeanLocal bean = EJBHelper.getBeanByMappedName("SFSBBasicBeanByXMLMappedLocal");
82         bean.toString();
83     }
84
85 }
86
Popular Tags