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 InputEntityBeanMissingConstructor 14 implements EntityBean 15 { 16 public InputEntityBeanMissingConstructor(Object aObject) 17 { 18 } 19 20 public Object thisMethod(Object aObject) 21 { 22 thisMethod(this); 23 return this; 24 } 25 26 static int sInt; 27 30 public void setEntityContext(EntityContext arg0) throws EJBException , RemoteException { 31 33 } 34 35 38 public void unsetEntityContext() throws EJBException , RemoteException { 39 41 } 42 43 46 public void ejbRemove() throws RemoveException , EJBException , RemoteException { 47 49 } 50 51 54 public void ejbActivate() throws EJBException , RemoteException { 55 57 } 58 59 62 public void ejbPassivate() throws EJBException , RemoteException { 63 65 } 66 67 70 public void ejbLoad() throws EJBException , RemoteException { 71 73 } 74 75 78 public void ejbStore() throws EJBException , RemoteException { 79 81 } 82 } | Popular Tags |