Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Source code: com/puppycrawl/tools/checkstyle/j2ee/InputEntityBeanFind.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 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      /**
30       * @see javax.ejb.EntityBean#setEntityContext(javax.ejb.EntityContext)
31       */
32      public void setEntityContext(EntityContext arg0) throws EJBException, RemoteException {
33          // TODO Auto-generated method stub
34          
35      }
36  
37      /**
38       * @see javax.ejb.EntityBean#unsetEntityContext()
39       */
40      public void unsetEntityContext() throws EJBException, RemoteException {
41          // TODO Auto-generated method stub
42          
43      }
44  
45      /**
46       * @see javax.ejb.EntityBean#ejbRemove()
47       */
48      public void ejbRemove() throws RemoveException, EJBException, RemoteException {
49          // TODO Auto-generated method stub
50          
51      }
52  
53      /**
54       * @see javax.ejb.EntityBean#ejbActivate()
55       */
56      public void ejbActivate() throws EJBException, RemoteException {
57          // TODO Auto-generated method stub
58          
59      }
60  
61      /**
62       * @see javax.ejb.EntityBean#ejbPassivate()
63       */
64      public void ejbPassivate() throws EJBException, RemoteException {
65          // TODO Auto-generated method stub
66          
67      }
68  
69      /**
70       * @see javax.ejb.EntityBean#ejbLoad()
71       */
72      public void ejbLoad() throws EJBException, RemoteException {
73          // TODO Auto-generated method stub
74          
75      }
76  
77      /**
78       * @see javax.ejb.EntityBean#ejbStore()
79       */
80      public void ejbStore() throws EJBException, RemoteException {
81          // TODO Auto-generated method stub
82          
83      }
84  
85  }