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 InputEntityBeanMatchEjbCreate 14 implements EntityBean 15 { 16 17 public InputEntityBeanMatchEjbCreate ejbCreate() 18 { 19 return null; 20 } 21 22 public InputEntityBeanMatchEjbCreate ejbCreate(int i) 23 { 24 return null; 25 } 26 27 public void ejbPostCreate(long i) 28 { 29 } 30 31 public InputEntityBeanMatchEjbCreate ejbCreateThing(int i) 32 { 33 return null; 34 } 35 36 public void ejbPostCreatething(int i) 37 { 38 } 39 40 public InputEntityBeanMatchEjbCreate ejbCreateInteger(java.lang.Integer i) 41 { 42 return null; 43 } 44 45 public void ejbPostCreateInteger(java.lang.Integer i) 46 { 47 } 48 49 public InputEntityBeanMatchEjbCreate ejbCreateInteger(java.lang.Integer i, 50 long x) 51 { 52 return null; 53 } 54 55 public void ejbPostCreateInteger(java.lang.Integer i, 56 double x) 57 { 58 } 59 62 public void setEntityContext(EntityContext arg0) throws EJBException , RemoteException { 63 65 } 66 67 70 public void unsetEntityContext() throws EJBException , RemoteException { 71 73 } 74 75 78 public void ejbRemove() throws RemoveException , EJBException , RemoteException { 79 81 } 82 83 86 public void ejbActivate() throws EJBException , RemoteException { 87 89 } 90 91 94 public void ejbPassivate() throws EJBException , RemoteException { 95 97 } 98 99 102 public void ejbLoad() throws EJBException , RemoteException { 103 105 } 106 107 110 public void ejbStore() throws EJBException , RemoteException { 111 113 } 114 115 } 116 117 | Popular Tags |