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 InputEntityBeanCreate 14 implements EntityBean 15 { 16 public InputEntityBeanCreate() 17 { 18 } 19 20 private final static void ejbCreateSomething() 21 { 22 } 23 24 public Object ejbFindByPrimaryKey(Object aObject) 25 { 26 return null; 27 } 28 29 public void ejbPostCreateSomething(int i) 30 { 31 } 32 33 36 public void setEntityContext(EntityContext arg0) throws EJBException , RemoteException { 37 39 } 40 41 44 public void unsetEntityContext() throws EJBException , RemoteException { 45 47 } 48 49 52 public void ejbRemove() throws RemoveException , EJBException , RemoteException { 53 55 } 56 57 60 public void ejbActivate() throws EJBException , RemoteException { 61 63 } 64 65 68 public void ejbPassivate() throws EJBException , RemoteException { 69 71 } 72 73 76 public void ejbLoad() throws EJBException , RemoteException { 77 79 } 80 81 84 public void ejbStore() throws EJBException , RemoteException { 85 87 } 88 89 } | Popular Tags |