| Home >> All >> com >> puppycrawl >> tools >> checkstyle >> [ j2ee Javadoc ] |
Source code: com/puppycrawl/tools/checkstyle/j2ee/InputEntityBeanHome.java
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 /** 11 * Test EntityBean 12 */ 13 public class InputEntityBeanHome 14 implements EntityBean 15 { 16 public InputEntityBeanHome() 17 { 18 } 19 20 private final static void ejbHomeSomething() 21 throws RemoteException 22 { 23 } 24 25 public Object ejbFindByPrimaryKey(Object aObject) 26 { 27 return null; 28 } 29 30 /** 31 * @see javax.ejb.EntityBean#setEntityContext(javax.ejb.EntityContext) 32 */ 33 public void setEntityContext(EntityContext arg0) throws EJBException, RemoteException { 34 // TODO Auto-generated method stub 35 36 } 37 38 /** 39 * @see javax.ejb.EntityBean#unsetEntityContext() 40 */ 41 public void unsetEntityContext() throws EJBException, RemoteException { 42 // TODO Auto-generated method stub 43 44 } 45 46 /** 47 * @see javax.ejb.EntityBean#ejbRemove() 48 */ 49 public void ejbRemove() throws RemoveException, EJBException, RemoteException { 50 // TODO Auto-generated method stub 51 52 } 53 54 /** 55 * @see javax.ejb.EntityBean#ejbActivate() 56 */ 57 public void ejbActivate() throws EJBException, RemoteException { 58 // TODO Auto-generated method stub 59 60 } 61 62 /** 63 * @see javax.ejb.EntityBean#ejbPassivate() 64 */ 65 public void ejbPassivate() throws EJBException, RemoteException { 66 // TODO Auto-generated method stub 67 68 } 69 70 /** 71 * @see javax.ejb.EntityBean#ejbLoad() 72 */ 73 public void ejbLoad() throws EJBException, RemoteException { 74 // TODO Auto-generated method stub 75 76 } 77 78 /** 79 * @see javax.ejb.EntityBean#ejbStore() 80 */ 81 public void ejbStore() throws EJBException, RemoteException { 82 // TODO Auto-generated method stub 83 84 } 85 86 }