KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > puppycrawl > tools > checkstyle > j2ee > InputEntityBeanMatchEjbCreate


1 package com.puppycrawl.tools.checkstyle.j2ee;
2
3 import java.rmi.RemoteException JavaDoc;
4
5 import javax.ejb.EJBException JavaDoc;
6 import javax.ejb.EntityBean JavaDoc;
7 import javax.ejb.EntityContext JavaDoc;
8 import javax.ejb.RemoveException JavaDoc;
9
10 /**
11  * Test EntityBean
12  */

13 public class InputEntityBeanMatchEjbCreate
14     implements EntityBean JavaDoc
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 JavaDoc i)
41     {
42         return null;
43     }
44     
45     public void ejbPostCreateInteger(java.lang.Integer JavaDoc i)
46     {
47     }
48     
49     public InputEntityBeanMatchEjbCreate ejbCreateInteger(java.lang.Integer JavaDoc i,
50         long x)
51     {
52         return null;
53     }
54     
55     public void ejbPostCreateInteger(java.lang.Integer JavaDoc i,
56         double x)
57     {
58     }
59     /**
60      * @see javax.ejb.EntityBean#setEntityContext(javax.ejb.EntityContext)
61      */

62     public void setEntityContext(EntityContext JavaDoc arg0) throws EJBException JavaDoc, RemoteException JavaDoc {
63         // TODO Auto-generated method stub
64

65     }
66
67     /**
68      * @see javax.ejb.EntityBean#unsetEntityContext()
69      */

70     public void unsetEntityContext() throws EJBException JavaDoc, RemoteException JavaDoc {
71         // TODO Auto-generated method stub
72

73     }
74
75     /**
76      * @see javax.ejb.EntityBean#ejbRemove()
77      */

78     public void ejbRemove() throws RemoveException JavaDoc, EJBException JavaDoc, RemoteException JavaDoc {
79         // TODO Auto-generated method stub
80

81     }
82
83     /**
84      * @see javax.ejb.EntityBean#ejbActivate()
85      */

86     public void ejbActivate() throws EJBException JavaDoc, RemoteException JavaDoc {
87         // TODO Auto-generated method stub
88

89     }
90
91     /**
92      * @see javax.ejb.EntityBean#ejbPassivate()
93      */

94     public void ejbPassivate() throws EJBException JavaDoc, RemoteException JavaDoc {
95         // TODO Auto-generated method stub
96

97     }
98
99     /**
100      * @see javax.ejb.EntityBean#ejbLoad()
101      */

102     public void ejbLoad() throws EJBException JavaDoc, RemoteException JavaDoc {
103         // TODO Auto-generated method stub
104

105     }
106
107     /**
108      * @see javax.ejb.EntityBean#ejbStore()
109      */

110     public void ejbStore() throws EJBException JavaDoc, RemoteException JavaDoc {
111         // TODO Auto-generated method stub
112

113     }
114
115 }
116
117
Popular Tags