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 InputEntityBeanFind 14 implements EntityBean 15 { 16 public InputEntityBeanFind() 17 { 18 } 19 20 private final static void ejbFindSomething() 21 { 22 } 23 24 public Object ejbFindByPrimaryKey(Object aObject) 25 { 26 return null; 27 } 28 29 32 public void setEntityContext(EntityContext arg0) throws EJBException , RemoteException { 33 35 } 36 37 40 public void unsetEntityContext() throws EJBException , RemoteException { 41 43 } 44 45 48 public void ejbRemove() throws RemoveException , EJBException , RemoteException { 49 51 } 52 53 56 public void ejbActivate() throws EJBException , RemoteException { 57 59 } 60 61 64 public void ejbPassivate() throws EJBException , RemoteException { 65 67 } 68 69 72 public void ejbLoad() throws EJBException , RemoteException { 73 75 } 76 77 80 public void ejbStore() throws EJBException , RemoteException { 81 83 } 84 85 } | Popular Tags |