01: /*
02: * JBoss, Home of Professional Open Source.
03: * Copyright 2006, Red Hat Middleware LLC, and individual contributors
04: * as indicated by the @author tags. See the copyright.txt file in the
05: * distribution for a full listing of individual contributors.
06: *
07: * This is free software; you can redistribute it and/or modify it
08: * under the terms of the GNU Lesser General Public License as
09: * published by the Free Software Foundation; either version 2.1 of
10: * the License, or (at your option) any later version.
11: *
12: * This software is distributed in the hope that it will be useful,
13: * but WITHOUT ANY WARRANTY; without even the implied warranty of
14: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15: * Lesser General Public License for more details.
16: *
17: * You should have received a copy of the GNU Lesser General Public
18: * License along with this software; if not, write to the Free
19: * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
20: * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
21: */
22: package org.jboss.test.session.ejb;
23:
24: import javax.ejb.CreateException;
25: import javax.ejb.SessionBean;
26: import javax.ejb.SessionContext;
27:
28: import org.jboss.logging.Logger;
29:
30: /**
31: * Bean to hold static creation/removal counters used by CountedSessionBean
32: *
33: * @author <a href="mailto:dimitris@jboss.org">Dimitris Andreadis</a>
34: * @version $Revision: 57211 $
35: */
36: public class CounterSessionBean implements SessionBean {
37: private static final Logger log = Logger
38: .getLogger(CounterSessionBean.class);
39:
40: private static int ejbCreateCounter = 0;
41: private static int ejbRemoveCounter = 0;
42:
43: // Package protected API -----------------------------------------
44:
45: static synchronized int increaseCreateCounter() {
46: return ejbCreateCounter++;
47: }
48:
49: static synchronized int increaseRemoveCounter() {
50: return ejbRemoveCounter++;
51: }
52:
53: // Constructors --------------------------------------------------
54:
55: public CounterSessionBean() {
56: }
57:
58: // Business Methods ----------------------------------------------
59:
60: public int getCreateCounter() {
61: synchronized (CounterSessionBean.class) {
62: return ejbCreateCounter;
63: }
64: }
65:
66: public int getRemoveCounter() {
67: synchronized (CounterSessionBean.class) {
68: return ejbRemoveCounter;
69: }
70: }
71:
72: public void clearCounters() {
73: synchronized (CounterSessionBean.class) {
74: ejbCreateCounter = 0;
75: ejbRemoveCounter = 0;
76: }
77: }
78:
79: // Container callbacks -------------------------------------------
80:
81: public void setSessionContext(SessionContext ctx) {
82: }
83:
84: public void ejbCreate() throws CreateException {
85: }
86:
87: public void ejbRemove() {
88: }
89:
90: public void ejbActivate() {
91: }
92:
93: public void ejbPassivate() {
94: }
95: }
|