summaryrefslogtreecommitdiffstats
path: root/Master/Reference Architectures and Patterns/EJB 3.0 Code/Rima Examples/src/examples/timer/META-INF/ejb-jar.xml
blob: a358d5a7e7e75c27cf5d7549cab79381b2521495 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?xml version="1.0" encoding="UTF-8"?>
<ejb-jar xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" full="false" version="3.0" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/ejb-jar_3_0.xsd">
  <enterprise-beans>
    <session>
      <display-name>CleanDayLimitOrdersBean</display-name>
      <ejb-name>CleanDayLimitOrdersBean</ejb-name>
      <business-remote>examples.timer.CleanDayLimitOrders</business-remote>
      <ejb-class>examples.timer.CleanDayLimitOrdersBean</ejb-class>
      <session-type>Stateless</session-type>
      <timeout-method>
         <method-name>handleTimeout</method-name>
         <method-params>
             <method-param>javax.ejb.Timer</method-param>
         </method-params>
      </timeout-method>
      <transaction-type>Container</transaction-type>
      <security-identity>
        <use-caller-identity/>
      </security-identity>
    </session>
  </enterprise-beans>
</ejb-jar>