Bonjour,
Mon ejb ne veut pas compiler
Voilal'erreur

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
jonasejbjartest:
     [echo] mapper.names = rdb.mysql
   [ejbjar] building Planning-ejbs-test.jar with 95 files
    [genic] GenIC fatal error: Cannot read the Deployment Descriptors from C:\CV
S_Perrier\planning\liv\jar\Planning-ejbs-test-generic.jar: Method getS_Ad2 of in
terface fr.perrier.planning.data.ClientSession should NOT throw RemoteException
    [genic] Exception during execution of org.objectweb.jonas_ejb.genic.GenIC :
Cannot read the Deployment Descriptors from C:\CVS_Perrier\planning\liv\jar\Plan
ning-ejbs-test-generic.jar:
    [genic] java.lang.RuntimeException: Cannot read the Deployment Descriptors f
rom C:\CVS_Perrier\planning\liv\jar\Planning-ejbs-test-generic.jar:
    [genic]     at org.objectweb.jonas_ejb.genic.GenIC.fatalError(GenIC.java:974
)
    [genic]     at org.objectweb.jonas_ejb.genic.GenIC.main(GenIC.java:450)
    [genic]     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    [genic]     at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAcces
sorImpl.java:39)
    [genic]     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMet
hodAccessorImpl.java:25)
    [genic]     at java.lang.reflect.Method.invoke(Method.java:324)
    [genic]     at org.objectweb.jonas.server.Bootstrap.main(Bootstrap.java:90)
 
 
 
BUILD FAILED
C:\CVS_Perrier\planning\build.xml:198: GenIC reported an error.
Voila le code de l'ejb l'objet :
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
/*
 * Created on 14 oct. 2004
 */
 
package fr.perrier.planning.data;
 
import java.rmi.RemoteException;
import java.util.Date;
import javax.ejb.EJBLocalObject;
 
/**
 * @author matthieu
 */
public interface ClientSession extends EJBLocalObject
{
    public String getS_Ad1();
 
    public String getS_Ad2()throws RemoteException;
 
    public Date getS_ADat()throws RemoteException;
 
    public String getS_Annu()throws RemoteException;
 
    public String getS_Banq()throws RemoteException;
 
    public String getS_Bcpta()throws RemoteException;
 
    public double getS_Ca1C()throws RemoteException;
 
    public double getS_Ca1D()throws RemoteException;
 
    public double getS_Ca1E()throws RemoteException;
 
    public long getS_Ca1M()throws RemoteException;
 
    public double getS_Ca1Pd()throws RemoteException;
 
    public double getS_Ca1S()throws RemoteException;
 
    public long getS_Ca2()throws RemoteException;
 
    public long getS_Ca3()throws RemoteException;
 
    public double getS_Caac()throws RemoteException;
 
    public double getS_Caad()throws RemoteException;
 
    public double getS_Caae()throws RemoteException;
 
    public double getS_Caapd()throws RemoteException;
 
    public double getS_Caas()throws RemoteException;
 
    public double getS_Camc()throws RemoteException;
 
    public double getS_Camd()throws RemoteException;
 
    public double getS_Came()throws RemoteException;
 
    public long getS_Camm()throws RemoteException;
 
    public double getS_Campd()throws RemoteException;
 
    public double getS_Cams()throws RemoteException;
 
    public String getS_CDist()throws RemoteException;
 
    public long getS_Cfil()throws RemoteException;
 
    public boolean getS_Client()throws RemoteException;
 
    public int getS_Cont()throws RemoteException;
 
    public long getS_CPost()throws RemoteException;
 
    public int getS_Cregi()throws RemoteException;
 
    public int getS_Ctax()throws RemoteException;
 
    public Date getS_DatCre()throws RemoteException;
 
    public Date getS_DatMaj()throws RemoteException;
 
    public String getS_Devis()throws RemoteException;
 
    public String getS_Domi()throws RemoteException;
 
    public int getS_Edit()throws RemoteException;
 
    public String getS_EMail()throws RemoteException;
 
    public String getS_Emi()throws RemoteException;
 
    public double getS_Escpt()throws RemoteException;
 
    public String getS_Expf()throws RemoteException;
 
    public String getS_Fax()throws RemoteException;
 
    public String getS_Franco()throws RemoteException;
 
    public String getS_Grp()throws RemoteException;
 
    public String getS_Guich()throws RemoteException;
 
    public long getS_ICpta()throws RemoteException;
 
    public Date getS_MDat()throws RemoteException;
 
    public int getS_Mode()throws RemoteException;
 
    public long getS_MtMin()throws RemoteException;
 
    public String getS_N1()throws RemoteException;
 
    public String getS_N2()throws RemoteException;
 
    public int getS_Nbrf()throws RemoteException;
 
    public long getS_NbrJ()throws RemoteException;
 
    public int getS_NbRp()throws RemoteException;
 
    public String getS_Nci()throws RemoteException;
 
    public String getS_Ncmpt()throws RemoteException;
 
    public int getS_Nfil()throws RemoteException;
 
    public String getS_NiOc()throws RemoteException;
 
    public Long getS_NoCli()throws RemoteException;
 
    public long getS_Ofa()throws RemoteException;
 
    public long getS_Ofa1()throws RemoteException;
 
    public Date getS_OfDat()throws RemoteException;
 
    public long getS_Pay()throws RemoteException;
 
    public String getS_Pays()throws RemoteException;
 
    public String getS_Pers()throws RemoteException;
 
    public double getS_Rem()throws RemoteException;
 
    public String getS_Rib()throws RemoteException;
 
    public long getS_Risq()throws RemoteException;
 
    public int getS_Rv()throws RemoteException;
 
    public int getS_Sa()throws RemoteException;
 
    public String getS_Sal1()throws RemoteException;
 
    public String getS_Sal2()throws RemoteException;
 
    public String getS_Sal3()throws RemoteException;
 
    public String getS_Sal4()throws RemoteException;
 
    public long getS_Soc()throws RemoteException;
 
    public String getS_Sta()throws RemoteException;
 
    public long getS_Suiv()throws RemoteException;
 
    public int getS_SuivSav()throws RemoteException;
 
    public long getS_Tarif()throws RemoteException;
 
    public double getS_Tcom()throws RemoteException;
 
    public String getS_Telep()throws RemoteException;
 
    public String getS_Telex()throws RemoteException;
 
    public String getS_TelexP()throws RemoteException;
 
    public int getS_Term()throws RemoteException;
 
    public int getS_TypCl()throws RemoteException;
 
    public int getS_Zone()throws RemoteException;
 
}
Le Bean :
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
/*
 * Created on 14 oct. 2004
 */
 
package fr.perrier.planning.data;
 
import java.rmi.RemoteException;
import java.util.Date;
import javax.ejb.EJBException;
import javax.ejb.SessionBean;
import javax.ejb.SessionContext;
 
/**
 * @author matthieu
 */
public class ClientSessionBean implements SessionBean
{
    SessionContext sessionContext = null;
    boolean s_Client;
    long s_Soc;
    Long s_NoCli;
    String s_Annu;
    int s_TypCl;
    String s_Sta;
    String s_N1;
    String s_N2;
    String s_Ad1;
    String s_Ad2;
    String s_CDist;
    long s_CPost;
    String s_Pays;
    Date s_DatCre;
    Date s_DatMaj;
    String s_Telep;
    String s_TelexP;
    String s_Telex;
    String s_Pers;
    String s_Domi;
    String s_Banq;
    String s_Guich;
    String s_Ncmpt;
    String s_Rib;
    int s_Cont;
    int s_Zone;
    long s_Pay;
    int s_Cregi;
    int s_Sa;
    int s_Rv;
    double s_Tcom;
    int s_Ctax;
    long s_Tarif;
    double s_Rem;
    double s_Escpt;
    int s_Nbrf;
    int s_NbRp;
    String s_Devis;
    long s_Camm;
    double s_Came;
    double s_Campd;
    double s_Cams;
    double s_Camd;
    double s_Camc;
    Date s_MDat;
    double s_Caae;
    double s_Caapd;
    double s_Caas;
    double s_Caad;
    double s_Caac;
    Date s_ADat;
    long s_Ca1M;
    double s_Ca1E;
    double s_Ca1Pd;
    double s_Ca1S;
    double s_Ca1D;
    double s_Ca1C;
    long s_Ca2;
    long s_Ca3;
    long s_Ofa;
    long s_Ofa1;
    Date s_OfDat;
    long s_Cfil;
    int s_Nfil;
    long s_Risq;
    int s_Mode;
    long s_NbrJ;
    int s_Term;
    int s_Edit;
    String s_Nci;
    String s_Emi;
    long s_MtMin;
    long s_Suiv;
    long s_ICpta;
    String s_Fax;
    String s_Grp;
    String s_Sal1;
    String s_Sal2;
    String s_Sal3;
    String s_Sal4;
    String s_NiOc;
    String s_Expf;
    String s_Bcpta;
    String s_Franco;
    String s_EMail;
    int s_SuivSav;
 
    public void ejbCreate()
    {
    }
 
    public void ejbCreate(boolean p_Client, long p_Soc, Long p_NoCli,
            String p_Annu, int p_TypCl, String p_Sta, String p_N1, String p_N2,
            String p_Ad1, String p_Ad2, String p_CDist, long p_CPost,
            String p_Pays, Date p_DatCre, Date p_DatMaj, String p_Telep,
            String p_TelexP, String p_Telex, String p_Pers, String p_Domi,
            String p_Banq, String p_Guich, String p_Ncmpt, String p_Rib,
            int p_Cont, int p_Zone, long p_Pay, int p_Cregi, int p_Sa,
            int p_Rv, double p_Tcom, int p_Ctax, long p_Tarif, double p_Rem,
            double p_Escpt, int p_Nbrf, int p_NbRp, String p_Devis,
            long p_Camm, double p_Came, double p_Campd, double p_Cams,
            double p_Camd, double p_Camc, Date p_MDat, double p_Caae,
            double p_Caapd, double p_Caas, double p_Caad, double p_Caac,
            Date p_ADat, long p_Ca1M, double p_Ca1E, double p_Ca1Pd,
            double p_Ca1S, double p_Ca1D, double p_Ca1C, long p_Ca2,
            long p_Ca3, long p_Ofa, long p_Ofa1, Date p_OfDat, long p_Cfil,
            int p_Nfil, long p_Risq, int p_Mode, long p_NbrJ, int p_Term,
            int p_Edit, String p_Nci, String p_Emi, long p_MtMin, long p_Suiv,
            long p_ICpta, String p_Fax, String p_Grp, String p_Sal1,
            String p_Sal2, String p_Sal3, String p_Sal4, String p_NiOc,
            String p_Expf, String p_Bcpta, String p_Franco, String p_EMail,
            int p_SuivSav)
    {
        s_Client = p_Client;
        s_Soc = p_Soc;
        s_NoCli = p_NoCli;
        s_Annu = p_Annu;
        s_TypCl = p_TypCl;
        s_Sta = p_Sta;
        s_N1 = p_N1;
        s_N2 = p_N2;
        s_Ad1 = p_Ad1;
        s_Ad2 = p_Ad2;
        s_CDist = p_CDist;
        s_CPost = p_CPost;
        s_Pays = p_Pays;
        s_DatCre = p_DatCre;
        s_DatMaj = p_DatMaj;
        s_Telep = p_Telep;
        s_TelexP = p_TelexP;
        s_Telex = p_Telex;
        s_Pers = p_Pers;
        s_Domi = p_Domi;
        s_Banq = p_Banq;
        s_Guich = p_Guich;
        s_Ncmpt = p_Ncmpt;
        s_Rib = p_Rib;
        s_Cont = p_Cont;
        s_Zone = p_Zone;
        s_Pay = p_Pay;
        s_Cregi = p_Cregi;
        s_Sa = p_Sa;
        s_Rv = p_Rv;
        s_Tcom = p_Tcom;
        s_Ctax = p_Ctax;
        s_Tarif = p_Tarif;
        s_Rem = p_Rem;
        s_Escpt = p_Escpt;
        s_Nbrf = p_Nbrf;
        s_NbRp = p_NbRp;
        s_Devis = p_Devis;
        s_Camm = p_Camm;
        s_Came = p_Came;
        s_Campd = p_Campd;
        s_Cams = p_Cams;
        s_Camd = p_Camd;
        s_Camc = p_Camc;
        s_MDat = p_MDat;
        s_Caae = p_Caae;
        s_Caapd = p_Caapd;
        s_Caas = p_Caas;
        s_Caad = p_Caad;
        s_Caac = p_Caac;
        s_ADat = p_ADat;
        s_Ca1M = p_Ca1M;
        s_Ca1E = p_Ca1E;
        s_Ca1Pd = p_Ca1Pd;
        s_Ca1S = p_Ca1S;
        s_Ca1D = p_Ca1D;
        s_Ca1C = p_Ca1C;
        s_Ca2 = p_Ca2;
        s_Ca3 = p_Ca3;
        s_Ofa = p_Ofa;
        s_Ofa1 = p_Ofa1;
        s_OfDat = p_OfDat;
        s_Cfil = p_Cfil;
        s_Nfil = p_Nfil;
        s_Risq = p_Risq;
        s_Mode = p_Mode;
        s_NbrJ = p_NbrJ;
        s_Term = p_Term;
        s_Edit = p_Edit;
        s_Nci = p_Nci;
        s_Emi = p_Emi;
        s_MtMin = p_MtMin;
        s_Suiv = p_Suiv;
        s_ICpta = p_ICpta;
        s_Fax = p_Fax;
        s_Grp = p_Grp;
        s_Sal1 = p_Sal1;
        s_Sal2 = p_Sal2;
        s_Sal3 = p_Sal3;
        s_Sal4 = p_Sal4;
        s_NiOc = p_NiOc;
        s_Expf = p_Expf;
        s_Bcpta = p_Bcpta;
        s_Franco = p_Franco;
        s_EMail = p_EMail;
        s_SuivSav = p_SuivSav;
    }
 
    public void setSessionContext(SessionContext sc) throws EJBException,
            RemoteException
    {
        sessionContext = sc;
    }
 
    public void ejbRemove() throws EJBException, RemoteException
    {
    }
 
    public void ejbActivate() throws EJBException, RemoteException
    {
    }
 
    public void ejbPassivate() throws EJBException, RemoteException
    {
    }
 
    public String getS_Ad1()
    {
        return s_Ad1;
    }
 
    public String getS_Ad2()
    {
        return s_Ad2;
    }
 
    public Date getS_ADat()
    {
        return s_ADat;
    }
 
    public String getS_Annu()
    {
        return s_Annu;
    }
 
    public String getS_Banq()
    {
        return s_Banq;
    }
 
    public String getS_Bcpta()
    {
        return s_Bcpta;
    }
 
    public double getS_Ca1C()
    {
        return s_Ca1C;
    }
 
    public double getS_Ca1D()
    {
        return s_Ca1D;
    }
 
    public double getS_Ca1E()
    {
        return s_Ca1E;
    }
 
    public long getS_Ca1M()
    {
        return s_Ca1M;
    }
 
    public double getS_Ca1Pd()
    {
        return s_Ca1Pd;
    }
 
    public double getS_Ca1S()
    {
        return s_Ca1S;
    }
 
    public long getS_Ca2()
    {
        return s_Ca2;
    }
 
    public long getS_Ca3()
    {
        return s_Ca3;
    }
 
    public double getS_Caac()
    {
        return s_Caac;
    }
 
    public double getS_Caad()
    {
        return s_Caad;
    }
 
    public double getS_Caae()
    {
        return s_Caae;
    }
 
    public double getS_Caapd()
    {
        return s_Caapd;
    }
 
    public double getS_Caas()
    {
        return s_Caas;
    }
 
    public double getS_Camc()
    {
        return s_Camc;
    }
 
    public double getS_Camd()
    {
        return s_Camd;
    }
 
    public double getS_Came()
    {
        return s_Came;
    }
 
    public long getS_Camm()
    {
        return s_Camm;
    }
 
    public double getS_Campd()
    {
        return s_Campd;
    }
 
    public double getS_Cams()
    {
        return s_Cams;
    }
 
    public String getS_CDist()
    {
        return s_CDist;
    }
 
    public long getS_Cfil()
    {
        return s_Cfil;
    }
 
    public boolean getS_Client()
    {
        return s_Client;
    }
 
    public int getS_Cont()
    {
        return s_Cont;
    }
 
    public long getS_CPost()
    {
        return s_CPost;
    }
 
    public int getS_Cregi()
    {
        return s_Cregi;
    }
 
    public int getS_Ctax()
    {
        return s_Ctax;
    }
 
    public Date getS_DatCre()
    {
        return s_DatCre;
    }
 
    public Date getS_DatMaj()
    {
        return s_DatMaj;
    }
 
    public String getS_Devis()
    {
        return s_Devis;
    }
 
    public String getS_Domi()
    {
        return s_Domi;
    }
 
    public int getS_Edit()
    {
        return s_Edit;
    }
 
    public String getS_EMail()
    {
        return s_EMail;
    }
 
    public String getS_Emi()
    {
        return s_Emi;
    }
 
    public double getS_Escpt()
    {
        return s_Escpt;
    }
 
    public String getS_Expf()
    {
        return s_Expf;
    }
 
    public String getS_Fax()
    {
        return s_Fax;
    }
 
    public String getS_Franco()
    {
        return s_Franco;
    }
 
    public String getS_Grp()
    {
        return s_Grp;
    }
 
    public String getS_Guich()
    {
        return s_Guich;
    }
 
    public long getS_ICpta()
    {
        return s_ICpta;
    }
 
    public Date getS_MDat()
    {
        return s_MDat;
    }
 
    public int getS_Mode()
    {
        return s_Mode;
    }
 
    public long getS_MtMin()
    {
        return s_MtMin;
    }
 
    public String getS_N1()
    {
        return s_N1;
    }
 
    public String getS_N2()
    {
        return s_N2;
    }
 
    public int getS_Nbrf()
    {
        return s_Nbrf;
    }
 
    public long getS_NbrJ()
    {
        return s_NbrJ;
    }
 
    public int getS_NbRp()
    {
        return s_NbRp;
    }
 
    public String getS_Nci()
    {
        return s_Nci;
    }
 
    public String getS_Ncmpt()
    {
        return s_Ncmpt;
    }
 
    public int getS_Nfil()
    {
        return s_Nfil;
    }
 
    public String getS_NiOc()
    {
        return s_NiOc;
    }
 
    public Long getS_NoCli()
    {
        return s_NoCli;
    }
 
    public long getS_Ofa()
    {
        return s_Ofa;
    }
 
    public long getS_Ofa1()
    {
        return s_Ofa1;
    }
 
    public Date getS_OfDat()
    {
        return s_OfDat;
    }
 
    public long getS_Pay()
    {
        return s_Pay;
    }
 
    public String getS_Pays()
    {
        return s_Pays;
    }
 
    public String getS_Pers()
    {
        return s_Pers;
    }
 
    public double getS_Rem()
    {
        return s_Rem;
    }
 
    public String getS_Rib()
    {
        return s_Rib;
    }
 
    public long getS_Risq()
    {
        return s_Risq;
    }
 
    public int getS_Rv()
    {
        return s_Rv;
    }
 
    public int getS_Sa()
    {
        return s_Sa;
    }
 
    public String getS_Sal1()
    {
        return s_Sal1;
    }
 
    public String getS_Sal2()
    {
        return s_Sal2;
    }
 
    public String getS_Sal3()
    {
        return s_Sal3;
    }
 
    public String getS_Sal4()
    {
        return s_Sal4;
    }
 
    public long getS_Soc()
    {
        return s_Soc;
    }
 
    public String getS_Sta()
    {
        return s_Sta;
    }
 
    public long getS_Suiv()
    {
        return s_Suiv;
    }
 
    public int getS_SuivSav()
    {
        return s_SuivSav;
    }
 
    public long getS_Tarif()
    {
        return s_Tarif;
    }
 
    public double getS_Tcom()
    {
        return s_Tcom;
    }
 
    public String getS_Telep()
    {
        return s_Telep;
    }
 
    public String getS_Telex()
    {
        return s_Telex;
    }
 
    public String getS_TelexP()
    {
        return s_TelexP;
    }
 
    public int getS_Term()
    {
        return s_Term;
    }
 
    public int getS_TypCl()
    {
        return s_TypCl;
    }
 
    public int getS_Zone()
    {
        return s_Zone;
    }
}
Et le home
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
 * Created on 14 oct. 2004
 *
 */
package fr.perrier.planning.data;
 
import java.rmi.RemoteException;
import java.util.Date;
 
import javax.ejb.CreateException;
import javax.ejb.EJBLocalHome;
 
/**
 * @author matthieu
 *
 */
public interface ClientSessionHome extends EJBLocalHome
{
}
MErci d'avance