KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > media > entity > MediaEntityManagerSession


1 /*
2  * JBoss, the OpenSource J2EE webOS
3  *
4  * Distributable under LGPL license.
5  * See terms of license at gnu.org.
6  */

7 package org.jboss.media.entity;
8
9 /**
10  * Session layer for MediaEntityManager.
11  */

12 public class MediaEntityManagerSession
13    extends org.jboss.media.entity.MediaEntityManagerBean
14    implements javax.ejb.SessionBean JavaDoc
15 {
16    public void ejbActivate()
17    {
18    }
19
20    public void ejbPassivate()
21    {
22    }
23
24    public void setSessionContext(javax.ejb.SessionContext JavaDoc ctx)
25    {
26    }
27
28    public void unsetSessionContext()
29    {
30    }
31
32    public void ejbRemove()
33    {
34    }
35
36    public void ejbCreate() throws javax.ejb.CreateException JavaDoc
37    {
38    }
39
40 }
41
Popular Tags