1 package com.puppycrawl.tools.checkstyle.j2ee; 2 3 import java.rmi.RemoteException ; 4 5 import javax.ejb.EJBException ; 6 import javax.ejb.EntityBean ; 7 import javax.ejb.EntityContext ; 8 import javax.ejb.RemoveException ; 9 10 13 public class InputEntityBean 14 implements EntityBean 15 { 16 17 public InputEntityBean() 18 { 19 } 20 21 public Object thisMethod(Object aObject) 22 { 23 thisMethod(this); 24 return this; 25 } 26 27 static int sInt; 28 31 public void setEntityContext(EntityContext arg0) throws EJBException , RemoteException { 32 34 } 35 36 39 public void unsetEntityContext() throws EJBException , RemoteException { 40 42 } 43 44 47 public void ejbRemove() throws RemoveException , EJBException , RemoteException { 48 50 } 51 52 55 public void ejbActivate() throws EJBException , RemoteException { 56 58 } 59 60 63 public void ejbPassivate() throws EJBException , RemoteException { 64 66 } 67 68 71 public void ejbLoad() throws EJBException , RemoteException { 72 74 } 75 76 79 public void ejbStore() throws EJBException , RemoteException { 80 82 } 83 } | Popular Tags |