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 InputEntityBeanPostCreate 14 implements EntityBean 15 { 16 public InputEntityBeanPostCreate() 17 { 18 } 19 20 private final static Object ejbPostCreateSomething() 21 { 22 return null; 23 } 24 25 public Object ejbFindByPrimaryKey(Object aObject) 26 { 27 return null; 28 } 29 30 33 public void setEntityContext(EntityContext arg0) throws EJBException , RemoteException { 34 36 } 37 38 41 public void unsetEntityContext() throws EJBException , RemoteException { 42 44 } 45 46 49 public void ejbRemove() throws RemoveException , EJBException , RemoteException { 50 52 } 53 54 57 public void ejbActivate() throws EJBException , RemoteException { 58 60 } 61 62 65 public void ejbPassivate() throws EJBException , RemoteException { 66 68 } 69 70 73 public void ejbLoad() throws EJBException , RemoteException { 74 76 } 77 78 81 public void ejbStore() throws EJBException , RemoteException { 82 84 } 85 86 } | Popular Tags |