KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > test > interfaces > AllTypesEntity


1 /*
2  * Generated by XDoclet - Do not edit!
3  */

4 package test.interfaces;
5
6 /**
7  * Remote interface for AllTypesEntity.
8  * @xdoclet-generated at 16-04-05
9  * @copyright The XDoclet Team
10  * @author XDoclet
11  * @version 1.2.3
12  */

13 public interface AllTypesEntity
14    extends javax.ejb.EJBObject JavaDoc
15 {
16
17    public int[] getIVOwnerHdl( )
18       throws java.rmi.RemoteException JavaDoc;
19
20    public java.lang.String JavaDoc getId( )
21       throws java.rmi.RemoteException JavaDoc;
22
23    /**
24     * Abstract CMP 2.0 field getter for field aBoolean.
25     */

26    public boolean getABoolean( )
27       throws java.rmi.RemoteException JavaDoc;
28
29    /**
30     * Abstract CMP 2.0 field setter for field aBoolean.
31     */

32    public void setABoolean( boolean aBoolean )
33       throws java.rmi.RemoteException JavaDoc;
34
35    /**
36     * Abstract CMP 2.0 field getter for field aByte.
37     */

38    public byte getAByte( )
39       throws java.rmi.RemoteException JavaDoc;
40
41    /**
42     * Abstract CMP 2.0 field setter for field aByte.
43     */

44    public void setAByte( byte aByte )
45       throws java.rmi.RemoteException JavaDoc;
46
47    /**
48     * Abstract CMP 2.0 field getter for field aShort.
49     */

50    public short getAShort( )
51       throws java.rmi.RemoteException JavaDoc;
52
53    /**
54     * Abstract CMP 2.0 field setter for field aShort.
55     */

56    public void setAShort( short aShort )
57       throws java.rmi.RemoteException JavaDoc;
58
59    /**
60     * Abstract CMP 2.0 field getter for field aChar.
61     */

62    public char getAChar( )
63       throws java.rmi.RemoteException JavaDoc;
64
65    /**
66     * Abstract CMP 2.0 field setter for field aChar.
67     */

68    public void setAChar( char aChar )
69       throws java.rmi.RemoteException JavaDoc;
70
71    /**
72     * Abstract CMP 2.0 field getter for field anInt.
73     */

74    public int getAnInt( )
75       throws java.rmi.RemoteException JavaDoc;
76
77    /**
78     * Abstract CMP 2.0 field setter for field anInt.
79     */

80    public void setAnInt( int anInt )
81       throws java.rmi.RemoteException JavaDoc;
82
83    /**
84     * Abstract CMP 2.0 field getter for field aLong.
85     */

86    public long getALong( )
87       throws java.rmi.RemoteException JavaDoc;
88
89    /**
90     * Abstract CMP 2.0 field setter for field aLong.
91     */

92    public void setALong( long aLong )
93       throws java.rmi.RemoteException JavaDoc;
94
95    /**
96     * Abstract CMP 2.0 field getter for field aFloat.
97     */

98    public float getAFloat( )
99       throws java.rmi.RemoteException JavaDoc;
100
101    /**
102     * Abstract CMP 2.0 field setter for field aFloat.
103     */

104    public void setAFloat( float aFloat )
105       throws java.rmi.RemoteException JavaDoc;
106
107    /**
108     * Abstract CMP 2.0 field getter for field aDouble.
109     */

110    public double getADouble( )
111       throws java.rmi.RemoteException JavaDoc;
112
113    /**
114     * Abstract CMP 2.0 field setter for field aDouble.
115     */

116    public void setADouble( double aDouble )
117       throws java.rmi.RemoteException JavaDoc;
118
119    /**
120     * Abstract CMP 2.0 field getter for field anObject. NOTE: most CMP engines will store the Object class as a serialized object in a BLOB data type.
121     */

122    public java.lang.Object JavaDoc getAnObject( )
123       throws java.rmi.RemoteException JavaDoc;
124
125    /**
126     * Abstract CMP 2.0 field setter for field anObject.
127     */

128    public void setAnObject( java.lang.Object JavaDoc anObject )
129       throws java.rmi.RemoteException JavaDoc;
130
131    /**
132     * Abstract CMP 2.0 field getter for field anObjectArray.
133     */

134    public java.lang.Object JavaDoc[] getAnObjectArray( )
135       throws java.rmi.RemoteException JavaDoc;
136
137    /**
138     * Abstract CMP 2.0 field setter for field anObjectArray.
139     */

140    public void setAnObjectArray( java.lang.Object JavaDoc[] anObjectArray )
141       throws java.rmi.RemoteException JavaDoc;
142
143    /**
144     * Abstract CMP 2.0 field getter for field aBooleanArray.
145     */

146    public boolean[] getABooleanArray( )
147       throws java.rmi.RemoteException JavaDoc;
148
149    /**
150     * Abstract CMP 2.0 field setter for field aBooleanArray.
151     */

152    public void setABooleanArray( boolean[] aBooleanArray )
153       throws java.rmi.RemoteException JavaDoc;
154
155    /**
156     * Abstract CMP 2.0 field getter for field aByteArray.
157     */

158    public byte[] getAByteArray( )
159       throws java.rmi.RemoteException JavaDoc;
160
161    /**
162     * Abstract CMP 2.0 field setter for field aByteArray.
163     */

164    public void setAByteArray( byte[] aByteArray )
165       throws java.rmi.RemoteException JavaDoc;
166
167    /**
168     * Abstract CMP 2.0 field getter for field aCharArray.
169     */

170    public char[] getACharArray( )
171       throws java.rmi.RemoteException JavaDoc;
172
173    /**
174     * Abstract CMP 2.0 field setter for field aCharArray.
175     */

176    public void setACharArray( char[] aCharArray )
177       throws java.rmi.RemoteException JavaDoc;
178
179    /**
180     * Abstract CMP 2.0 field getter for field aShortArray.
181     */

182    public short[] getAShortArray( )
183       throws java.rmi.RemoteException JavaDoc;
184
185    /**
186     * Abstract CMP 2.0 field setter for field aShortArray.
187     */

188    public void setAShortArray( short[] aShortArray )
189       throws java.rmi.RemoteException JavaDoc;
190
191    /**
192     * Abstract CMP 2.0 field getter for field anIntArray.
193     */

194    public int[] getAnIntArray( )
195       throws java.rmi.RemoteException JavaDoc;
196
197    /**
198     * Abstract CMP 2.0 field setter for field anIntArray.
199     */

200    public void setAnIntArray( int[] anIntArray )
201       throws java.rmi.RemoteException JavaDoc;
202
203    /**
204     * Abstract CMP 2.0 field getter for field aLongArray.
205     */

206    public long[] getALongArray( )
207       throws java.rmi.RemoteException JavaDoc;
208
209    /**
210     * Abstract CMP 2.0 field setter for field aLongArray.
211     */

212    public void setALongArray( long[] aLongArray )
213       throws java.rmi.RemoteException JavaDoc;
214
215    /**
216     * Abstract CMP 2.0 field getter for field aFloatArray.
217     */

218    public float[] getAFloatArray( )
219       throws java.rmi.RemoteException JavaDoc;
220
221    /**
222     * Abstract CMP 2.0 field setter for field aFloatArray.
223     */

224    public void setAFloatArray( float[] aFloatArray )
225       throws java.rmi.RemoteException JavaDoc;
226
227    /**
228     * Abstract CMP 2.0 field getter for field aDoubleArray.
229     */

230    public double[] getADoubleArray( )
231       throws java.rmi.RemoteException JavaDoc;
232
233    /**
234     * Abstract CMP 2.0 field setter for field aDoubleArray.
235     */

236    public void setADoubleArray( double[] aDoubleArray )
237       throws java.rmi.RemoteException JavaDoc;
238
239    /**
240     * The creation-date of the entity. This field is purely to track when this entity was created, and should be set in ejbCreate (<code>setCreationDate(new Date());</code>. It is not included in the value object. <p>We use the qualified name here because XDoclet doesn't copy imports from base classes into the generated interfaces.</p>
241     */

242    public java.util.Date JavaDoc getCreationDate( )
243       throws java.rmi.RemoteException JavaDoc;
244
245    public void setCreationDate( java.util.Date JavaDoc creationDate )
246       throws java.rmi.RemoteException JavaDoc;
247
248 }
249
Popular Tags