Subversion Repository Public Repository

Satyam

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
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
Manifest-Version: 1.0
Export-Package: org.springframework.orm.jpa;uses:="org.apache.commons.
 logging,org.aopalliance.intercept,org.springframework.beans,org.sprin
 gframework.dao.support,org.springframework.core,org.springframework.i
 nstrument.classloading,javax.persistence,org.springframework.jdbc.dat
 asource,org.springframework.beans.factory,org.springframework.transac
 tion,org.springframework.context.weaving,org.springframework.util,org
 .springframework.core.io,org.springframework.context,org.springframew
 ork.jdbc.datasource.lookup,javax.sql,org.springframework.orm,org.spri
 ngframework.orm.jpa.persistenceunit,javax.persistence.spi,org.springf
 ramework.dao,org.springframework.transaction.support";version=2.5.5,o
 rg.springframework.scheduling.commonj;uses:="javax.naming,org.apache.
 commons.logging,org.springframework.util,org.springframework.context,
 org.springframework.jndi,org.springframework.scheduling,commonj.work,
 commonj.timers,org.springframework.core.task,org.springframework.bean
 s.factory";version=2.5.5,org.springframework.aop.target;uses:="org.sp
 ringframework.aop.support,org.apache.commons.logging,org.springframew
 ork.aop,org.apache.commons.pool.impl,org.springframework.util,org.apa
 che.commons.pool,org.springframework.beans,org.springframework.beans.
 factory.config,org.springframework.core,org.springframework.beans.fac
 tory";version=2.5.5,org.springframework.web.jsf.el;uses:="javax.el,or
 g.apache.commons.logging,org.springframework.beans.factory.access.el,
 javax.faces.context,org.springframework.beans,org.springframework.web
 .jsf,org.springframework.web.context,org.springframework.beans.factor
 y";version=2.5.5,org.aopalliance.intercept;uses:=org.aopalliance.aop;
 version=1.0,org.springframework.aop.target.dynamic;uses:="org.apache.
 commons.logging,org.springframework.aop,org.springframework.util,org.
 springframework.beans.factory";version=2.5.5,org.springframework.jca.
 cci.object;uses:="javax.resource,javax.resource.cci,org.springframewo
 rk.jca.cci.core.support,org.springframework.jca.cci.core,org.springfr
 amework.dao,org.springframework.beans.factory";version=2.5.5,org.spri
 ngframework.jms.config;uses:="org.springframework.beans.factory.suppo
 rt,org.springframework.util,org.springframework.beans,org.springframe
 work.beans.factory.xml,org.springframework.beans.factory.config,org.s
 pringframework.beans.factory.parsing,org.w3c.dom";version=2.5.5,org.s
 pringframework.remoting.jaxrpc;uses:="org.springframework.aop.support
 ,org.apache.commons.logging,org.aopalliance.intercept,org.springframe
 work.context.support,org.springframework.beans,javax.xml.namespace,ja
 vax.servlet,javax.xml.rpc.server,org.springframework.web.util,org.spr
 ingframework.remoting.rmi,org.springframework.beans.factory,org.sprin
 gframework.remoting.soap,org.springframework.util,org.springframework
 .context,org.springframework.web.context,javax.xml.rpc,org.springfram
 ework.remoting,org.springframework.aop.framework,javax.xml.rpc.soap,o
 rg.springframework.web.context.support";version=2.5.5,org.springframe
 work.jmx.export;uses:="org.springframework.aop.support,org.springfram
 ework.aop.target,org.apache.commons.logging,org.springframework.jmx.e
 xport.assembler,org.springframework.aop,org.springframework.util,org.
 springframework.jmx,org.springframework.beans.factory.config,javax.ma
 nagement,org.springframework.core,org.springframework.jmx.support,org
 .springframework.jmx.export.naming,org.springframework.aop.framework,
 javax.management.modelmbean,org.springframework.beans.factory,org.spr
 ingframework.jmx.export.notification";version=2.5.5,org.springframewo
 rk.beans.propertyeditors;uses:="org.springframework.util,org.springfr
 amework.core.io";version=2.5.5,org.springframework.dao.support;uses:=
 "org.apache.commons.logging,org.aopalliance.intercept,org.springframe
 work.util,org.springframework.beans,org.springframework.dao,org.sprin
 gframework.beans.factory";version=2.5.5,org.springframework.aop.frame
 work.autoproxy.target;uses:="org.springframework.beans.factory.suppor
 t,org.apache.commons.logging,org.springframework.aop.target,org.sprin
 gframework.aop.framework.autoproxy,org.springframework.aop,org.spring
 framework.aop.framework,org.springframework.beans.factory.config,org.
 springframework.beans.factory";version=2.5.5,org.springframework.bean
 s.factory.support;uses:="org.apache.commons.logging,net.sf.cglib.prox
 y,org.springframework.util,org.springframework.beans,org.springframew
 ork.core.io,org.springframework.core.io.support,org.springframework.b
 eans.factory.config,org.springframework.core,org.springframework.bean
 s.factory";version=2.5.5,org.springframework.beans.factory.access.el;
 uses:="javax.el,org.apache.commons.logging,org.springframework.util,o
 rg.springframework.beans.factory";version=2.5.5,org.springframework.j
 dbc.support.xml;uses:="javax.xml.transform,org.springframework.jdbc.c
 ore,org.springframework.dao,org.w3c.dom";version=2.5.5,org.springfram
 ework.jdbc.support.incrementer;uses:="org.springframework.jdbc.suppor
 t,javax.sql,org.springframework.util,org.springframework.dao,org.spri
 ngframework.jdbc.datasource,org.springframework.beans.factory";versio
 n=2.5.5,org.springframework.beans.factory.access;uses:="org.springfra
 mework.beans.factory.support,org.apache.commons.logging,org.springfra
 mework.core.io,org.springframework.beans,org.springframework.beans.fa
 ctory.xml,org.springframework.beans.factory.config,org.springframewor
 k.core.io.support,org.springframework.beans.factory";version=2.5.5,or
 g.springframework.scripting.jruby;uses:="org.springframework.aop.supp
 ort,org.jruby,org.jruby.runtime,org.jruby.exceptions,org.springframew
 ork.util,org.jruby.javasupport,org.jruby.ast,org.springframework.core
 ,org.jruby.runtime.builtin,org.springframework.scripting,org.springfr
 amework.beans.factory";version=2.5.5,org.springframework.jca.context;
 uses:="org.apache.commons.logging,javax.resource,org.springframework.
 util,org.springframework.context.support,org.springframework.beans,or
 g.springframework.beans.factory.xml,org.springframework.context,org.s
 pringframework.beans.factory.config,javax.resource.spi.endpoint,org.s
 pringframework.beans.factory.support,javax.resource.spi,javax.transac
 tion.xa,javax.resource.spi.work,org.springframework.beans.factory";ve
 rsion=2.5.5,org.springframework.orm.jpa.vendor;uses:="org.springframe
 work.orm.jpa,org.eclipse.persistence.internal.sessions,org.eclipse.pe
 rsistence.internal.databaseaccess,oracle.toplink.essentials.internal.
 sessions,org.springframework.jdbc.datasource,javax.persistence,org.sp
 ringframework.transaction,org.eclipse.persistence.sessions,oracle.top
 link.essentials.ejb.cmp3,org.eclipse.persistence.jpa,org.springframew
 ork.jdbc.support,oracle.toplink.essentials.internal.databaseaccess,or
 g.hibernate.dialect,org.hibernate,org.apache.openjpa.persistence,java
 x.persistence.spi,oracle.toplink.essentials.sessions,org.springframew
 ork.dao,org.springframework.orm.hibernate3,org.hibernate.ejb";version
 =2.5.5,org.springframework.jdbc.core.metadata;uses:="org.springframew
 ork.jdbc.support,org.apache.commons.logging,org.springframework.jdbc.
 core.namedparam,javax.sql,org.springframework.util,org.springframewor
 k.jdbc.core,org.springframework.dao";version=2.5.5,org.springframewor
 k.jdbc.object;uses:="org.springframework.jdbc,org.apache.commons.logg
 ing,org.springframework.jdbc.core.namedparam,org.springframework.jdbc
 .support.nativejdbc,org.springframework.dao.support,org.springframewo
 rk.jdbc.support,javax.sql,org.springframework.jdbc.core,org.springfra
 mework.dao,org.springframework.beans.factory";version=2.5.5,org.sprin
 gframework.jmx.export.notification;uses:="org.springframework.util,or
 g.springframework.jmx,javax.management,javax.management.modelmbean";v
 ersion=2.5.5,org.springframework.beans.factory;uses:="org.springframe
 work.core,org.springframework.util,org.springframework.beans";version
 =2.5.5,org.springframework.jca.cci.connection;uses:="org.springframew
 ork.transaction,javax.naming,javax.resource,org.apache.commons.loggin
 g,org.springframework.util,org.springframework.core,javax.resource.cc
 i,org.springframework.jca.cci,javax.resource.spi,org.springframework.
 transaction.support,org.springframework.beans.factory";version=2.5.5,
 org.springframework.orm.toplink;uses:="oracle.toplink.expressions,ora
 cle.toplink.jndi,org.apache.commons.logging,org.aopalliance.intercept
 ,org.springframework.beans,org.springframework.dao.support,oracle.top
 link.sessionbroker,oracle.toplink.queryframework,org.springframework.
 jdbc.datasource,oracle.toplink.tools.sessionmanagement,org.springfram
 ework.beans.factory,org.springframework.transaction,oracle.toplink.se
 ssions,oracle.toplink.tools.sessionconfiguration,org.springframework.
 util,oracle.toplink.exceptions,oracle.toplink.publicinterface,org.spr
 ingframework.jdbc.support,org.springframework.orm,javax.sql,oracle.to
 plink.threetier,oracle.toplink.internal.databaseaccess,org.springfram
 ework.dao,org.springframework.transaction.support";version=2.5.5,org.
 springframework.ejb.support;uses:="org.apache.commons.logging,javax.e
 jb,javax.jms,org.springframework.context.access,org.springframework.b
 eans.factory.access,org.springframework.util,org.springframework.bean
 s,org.springframework.beans.factory";version=2.5.5,org.springframewor
 k.jdbc;uses:=org.springframework.dao;version=2.5.5,org.springframewor
 k.scripting.support;uses:="org.springframework.aop.support,org.apache
 .commons.logging,org.springframework.aop,net.sf.cglib.asm,net.sf.cgli
 b.proxy,org.springframework.util,org.springframework.aop.target.dynam
 ic,org.springframework.beans,org.springframework.core.io,org.springfr
 amework.context,org.springframework.beans.factory.config,org.aopallia
 nce.aop,org.springframework.beans.factory.support,org.springframework
 .core,org.springframework.aop.framework,net.sf.cglib.core,org.springf
 ramework.scripting,org.springframework.beans.factory";version=2.5.5,o
 rg.springframework.jmx.export.metadata;uses:="org.springframework.met
 adata,org.springframework.util,org.springframework.jmx,org.springfram
 ework.beans,javax.management.modelmbean,org.springframework.beans.fac
 tory";version=2.5.5,org.springframework.ui.context;uses:=org.springfr
 amework.context;version=2.5.5,org.springframework.instrument.classloa
 ding.tomcat;uses:="org.springframework.instrument.classloading,org.ap
 ache.catalina.loader";version=2.5.5,org.springframework.jdbc.core.sim
 ple;uses:="org.apache.commons.logging,org.springframework.jdbc.core.n
 amedparam,org.springframework.jdbc.core.support,org.springframework.u
 til,org.springframework.jdbc.support.nativejdbc,org.springframework.j
 dbc.support,javax.sql,org.springframework.jdbc.core,org.springframewo
 rk.jdbc.core.metadata,org.springframework.dao";version=2.5.5,org.spri
 ngframework.jmx.export.assembler;uses:="org.springframework.aop.suppo
 rt,org.springframework.jmx.export.metadata,org.springframework.util,o
 rg.springframework.beans,javax.management,org.springframework.core,or
 g.springframework.jmx.support,org.springframework.aop.framework,javax
 .management.modelmbean,org.springframework.beans.factory";version=2.5
 .5,org.springframework.util;uses:="org.apache.commons.logging,org.apa
 che.log4j,org.apache.log4j.xml";version=2.5.5,org.springframework.jca
 .work.jboss;uses:="javax.naming,org.springframework.jca.work,javax.re
 source.spi.work,javax.management";version=2.5.5,org.springframework.c
 ore.io;uses:="org.springframework.core,org.springframework.util";vers
 ion=2.5.5,org.springframework.context;uses:="org.springframework.core
 .io,org.springframework.beans,org.springframework.core.io.support,org
 .springframework.beans.factory.config,org.springframework.beans.facto
 ry";version=2.5.5,org.springframework.core.annotation;uses:="org.spri
 ngframework.core,org.springframework.util";version=2.5.5,org.springfr
 amework.web.context;uses:="org.apache.commons.logging,org.springframe
 work.context.access,org.springframework.util,org.springframework.bean
 s,org.springframework.core.io,org.springframework.context,org.springf
 ramework.core.io.support,org.springframework.core,javax.servlet,org.s
 pringframework.beans.factory.access,javax.servlet.http,org.springfram
 ework.beans.factory";version=2.5.5,org.springframework.context.config
 ;uses:="org.springframework.util,org.springframework.core.io,org.spri
 ngframework.beans,org.springframework.beans.factory.xml,org.springfra
 mework.beans.factory.config,org.springframework.beans.factory.parsing
 ,org.w3c.dom,org.springframework.beans.factory.support,org.springfram
 ework.core,org.springframework.jndi,org.springframework.jmx.support";
 version=2.5.5,org.springframework.jca.work;uses:="org.springframework
 .jndi,javax.naming,org.springframework.scheduling,javax.resource.spi,
 org.springframework.util,javax.transaction.xa,org.springframework.jca
 .context,javax.resource.spi.work,org.springframework.core.task,org.sp
 ringframework.beans.factory";version=2.5.5,org.springframework.aop.co
 nfig;uses:="org.springframework.aop.support,org.springframework.aop.a
 spectj.autoproxy,org.springframework.util,org.springframework.aop.sco
 pe,org.springframework.beans,org.springframework.aop.aspectj,org.spri
 ngframework.beans.factory.xml,org.springframework.beans.factory.confi
 g,org.springframework.beans.factory.parsing,org.springframework.util.
 xml,org.w3c.dom,org.springframework.beans.factory.support,org.springf
 ramework.core,org.springframework.aop.framework.autoproxy,org.springf
 ramework.aop.framework,org.springframework.beans.factory";version=2.5
 .5,org.springframework.scheduling;uses:="org.springframework.core,org
 .springframework.core.task";version=2.5.5,org.springframework.jms.con
 nection;uses:="org.springframework.core,org.springframework.transacti
 on,org.apache.commons.logging,javax.jms,org.springframework.util,org.
 springframework.jms,org.springframework.transaction.support,org.sprin
 gframework.beans.factory";version=2.5.5,org.springframework.transacti
 on.annotation;uses:="javax.ejb,org.springframework.util,org.springfra
 mework.transaction.interceptor,org.springframework.transaction.suppor
 t";version=2.5.5,org.springframework.aop.framework;uses:="org.springf
 ramework.aop.support,org.apache.commons.logging,org.springframework.a
 op.framework.adapter,org.springframework.aop.target,org.aopalliance.i
 ntercept,net.sf.cglib.proxy,org.springframework.aop,org.springframewo
 rk.util,org.springframework.beans,org.aopalliance.aop,org.springframe
 work.core,net.sf.cglib.transform.impl,net.sf.cglib.core,org.springfra
 mework.beans.factory";version=2.5.5,org.springframework.jmx.export.na
 ming;uses:="org.springframework.aop.support,org.apache.commons.loggin
 g,org.springframework.jmx.export.metadata,org.springframework.util,or
 g.springframework.core.io,org.springframework.core.io.support,javax.m
 anagement,org.springframework.jmx.support,org.springframework.beans.f
 actory";version=2.5.5,org.springframework.mail.javamail;uses:="javax.
 activation,javax.mail.internet,org.springframework.util,org.springfra
 mework.core.io,javax.mail,org.springframework.mail,org.springframewor
 k.beans.factory";version=2.5.5,org.springframework.dao;uses:=org.spri
 ngframework.core;version=2.5.5,org.springframework.core.task;uses:="o
 rg.springframework.core,org.springframework.util";version=2.5.5,org.s
 pringframework.transaction.support;uses:="org.springframework.core,or
 g.springframework.transaction,org.apache.commons.logging,org.springfr
 amework.util,org.springframework.beans.factory";version=2.5.5,org.spr
 ingframework.aop.aspectj.autoproxy;uses:="org.springframework.core,or
 g.aspectj.util,org.springframework.aop.framework.autoproxy,org.spring
 framework.aop,org.springframework.util,org.springframework.aop.aspect
 j,org.aopalliance.aop";version=2.5.5,org.springframework.jdbc.core.su
 pport;uses:="org.springframework.jdbc,org.springframework.util,org.sp
 ringframework.dao.support,org.springframework.beans.factory.support,o
 rg.springframework.jdbc.support,javax.sql,org.springframework.jdbc.su
 pport.lob,org.springframework.jdbc.core,org.springframework.dao,org.s
 pringframework.jdbc.datasource";version=2.5.5,org.springframework.jca
 .work.glassfish;uses:="org.springframework.jca.work,org.springframewo
 rk.util,javax.resource.spi.work";version=2.5.5,org.springframework.be
 ans.factory.annotation;uses:="org.apache.commons.logging,org.springfr
 amework.util,org.springframework.beans,org.springframework.beans.fact
 ory.config,org.springframework.core.annotation,org.springframework.be
 ans.factory.support,org.springframework.beans.factory.wiring,org.spri
 ngframework.core,org.springframework.core.type,org.springframework.be
 ans.factory";version=2.5.5,org.springframework.beans;uses:="org.apach
 e.commons.logging,org.springframework.util,org.springframework.core.i
 o,org.springframework.core.io.support,org.springframework.beans.prope
 rtyeditors,org.springframework.core";version=2.5.5,org.springframewor
 k.web.jsf;uses:="org.apache.commons.logging,javax.faces.application,j
 avax.faces.context,org.springframework.util,javax.faces.el,org.spring
 framework.web.util,org.springframework.web.context,javax.faces.event,
 org.springframework.beans.factory";version=2.5.5,org.springframework.
 beans.factory.config;uses:="org.apache.commons.logging,org.springfram
 ework.beans.support,org.springframework.util,org.springframework.bean
 s,org.springframework.core.io.support,org.springframework.core,org.sp
 ringframework.beans.factory";version=2.5.5,org.springframework.contex
 t.annotation;uses:="javax.annotation,javax.ejb,org.springframework.be
 ans.factory.annotation,org.springframework.beans,org.springframework.
 beans.factory.config,javax.xml.namespace,org.springframework.core,org
 .springframework.beans.factory.support,org.springframework.jndi.suppo
 rt,org.springframework.core.type,org.springframework.beans.factory,or
 g.springframework.util,org.springframework.aop.scope,org.springframew
 ork.core.io,org.springframework.beans.factory.xml,org.springframework
 .context,org.springframework.beans.factory.parsing,org.springframewor
 k.core.io.support,org.w3c.dom,org.springframework.core.type.filter,or
 g.springframework.core.type.classreading,javax.xml.ws,org.springframe
 work.stereotype";version=2.5.5,org.springframework.util.xml;uses:="or
 g.apache.commons.logging,javax.xml.transform,org.springframework.util
 ,org.w3c.dom,org.xml.sax";version=2.5.5,org.springframework.jndi;uses
 :="javax.naming,org.apache.commons.logging,org.aopalliance.intercept,
 org.springframework.aop,org.springframework.util,org.aopalliance.aop,
 org.springframework.beans.propertyeditors,org.springframework.core,or
 g.springframework.aop.framework,org.springframework.beans.factory";ve
 rsion=2.5.5,org.springframework.remoting.support;uses:="org.apache.co
 mmons.logging,com.sun.net.httpserver,org.aopalliance.intercept,org.sp
 ringframework.util,org.aopalliance.aop,org.springframework.core.task.
 support,org.springframework.aop.framework,org.springframework.core.ta
 sk,org.springframework.beans.factory";version=2.5.5,org.springframewo
 rk.scheduling.backportconcurrent;uses:="edu.emory.mathcs.backport.jav
 a.util.concurrent,org.apache.commons.logging,org.springframework.sche
 duling,org.springframework.util,org.springframework.scheduling.suppor
 t,org.springframework.core.task,org.springframework.beans.factory";ve
 rsion=2.5.5,org.springframework.jdbc.core;uses:="org.springframework.
 jdbc,org.apache.commons.logging,org.springframework.util,org.springfr
 amework.beans,com.sun.rowset,org.springframework.jdbc.support.nativej
 dbc,org.springframework.jdbc.support.rowset,org.springframework.dao.s
 upport,org.springframework.core,org.springframework.jdbc.support,java
 x.sql,javax.sql.rowset,org.springframework.dao,org.springframework.jd
 bc.datasource";version=2.5.5,org.springframework.core.style;uses:=org
 .springframework.util;version=2.5.5,org.springframework.validation;us
 es:="org.springframework.core,org.apache.commons.logging,org.springfr
 amework.util,org.springframework.context.support,org.springframework.
 beans";version=2.5.5,org.springframework.beans.annotation;uses:="org.
 springframework.util,org.springframework.beans";version=2.5.5,org.spr
 ingframework.metadata.commons;uses:="org.springframework.metadata,org
 .apache.commons.attributes";version=2.5.5,org.springframework.context
 .i18n;uses:="org.springframework.core,org.springframework.util";versi
 on=2.5.5,org.springframework.transaction.config;uses:="org.springfram
 ework.util,org.springframework.beans,org.springframework.beans.factor
 y.xml,org.springframework.beans.factory.config,org.springframework.be
 ans.factory.parsing,org.springframework.transaction.interceptor,org.s
 pringframework.util.xml,org.w3c.dom,org.springframework.core,org.spri
 ngframework.beans.factory.support,org.springframework.aop.config";ver
 sion=2.5.5,org.springframework.web.filter;uses:="org.apache.commons.l
 ogging,org.springframework.context.i18n,org.apache.log4j,org.springfr
 amework.util,org.springframework.beans,org.springframework.core.io,or
 g.springframework.web.context,javax.servlet,org.springframework.web.c
 ontext.request,org.springframework.web.util,org.springframework.web.c
 ontext.support,org.springframework.beans.factory,javax.servlet.http";
 version=2.5.5,org.springframework.orm.hibernate3.annotation;uses:="or
 g.hibernate,org.hibernate.cfg,org.springframework.orm.hibernate3";ver
 sion=2.5.5,org.springframework.beans.factory.xml;uses:="org.apache.co
 mmons.logging,org.springframework.util,org.springframework.core.io,or
 g.springframework.beans,javax.xml.parsers,org.springframework.core.io
 .support,org.springframework.beans.factory.parsing,org.springframewor
 k.beans.factory.config,org.springframework.util.xml,org.w3c.dom,org.x
 ml.sax,org.springframework.beans.factory.support,org.springframework.
 core,org.springframework.beans.factory";version=2.5.5,org.springframe
 work.beans.factory.parsing;uses:="org.apache.commons.logging,org.spri
 ngframework.util,org.springframework.core.io,org.springframework.bean
 s,org.springframework.beans.factory.config,org.springframework.beans.
 factory";version=2.5.5,org.springframework.transaction.interceptor;us
 es:="org.springframework.aop.support,org.springframework.transaction,
 org.apache.commons.logging,org.aopalliance.intercept,org.springframew
 ork.aop,org.springframework.util,org.aopalliance.aop,org.springframew
 ork.beans.propertyeditors,org.springframework.core,org.springframewor
 k.metadata,org.springframework.aop.framework,org.springframework.tran
 saction.support,org.springframework.beans.factory";version=2.5.5,org.
 springframework.jdbc.support.nativejdbc;uses:="org.springframework.ut
 il,com.mchange.v2.c3p0,org.enhydra.jdbc.core,org.springframework.jdbc
 .datasource";version=2.5.5,org.springframework.jdbc.support.rowset;us
 es:=org.springframework.jdbc;version=2.5.5,org.springframework.ejb.co
 nfig;uses:="org.springframework.jndi,org.springframework.beans.factor
 y.support,org.springframework.util,org.springframework.beans.factory.
 xml,org.springframework.beans.factory.config,org.springframework.util
 .xml,org.w3c.dom";version=2.5.5,org.springframework.context.event;use
 s:="org.springframework.core,org.aopalliance.intercept,org.springfram
 ework.beans,org.springframework.context,org.springframework.core.task
 ,org.springframework.beans.factory";version=2.5.5,org.springframework
 .orm.jdo;uses:="org.springframework.transaction,org.apache.commons.lo
 gging,org.aopalliance.intercept,org.springframework.util,org.springfr
 amework.core.io,org.springframework.core.io.support,org.springframewo
 rk.dao.support,org.springframework.core,javax.jdo.datastore,org.sprin
 gframework.jdbc.support,javax.sql,org.springframework.orm,javax.jdo,o
 rg.springframework.dao,org.springframework.jdbc.datasource,org.spring
 framework.transaction.support,org.springframework.beans.factory";vers
 ion=2.5.5,org.springframework.orm.toplink.support;uses:="org.springfr
 amework.orm.toplink,oracle.toplink.sessions,org.apache.commons.loggin
 g,org.springframework.util,oracle.toplink.exceptions,oracle.toplink.l
 ogging,oracle.toplink.publicinterface,org.springframework.dao.support
 ,oracle.toplink.internal.databaseaccess,org.springframework.dao,org.s
 pringframework.beans.factory";version=2.5.5,org.springframework.core.
 type.filter;uses:="org.aspectj.weaver,org.aspectj.weaver.patterns,org
 .springframework.core.type.classreading,org.springframework.util,org.
 aspectj.bridge,org.aspectj.weaver.bcel,org.springframework.core.type"
 ;version=2.5.5,org.springframework.remoting.jaxrpc.support;uses:="jav
 ax.xml.rpc.encoding,org.springframework.util,org.apache.axis.encoding
 .ser,org.springframework.remoting.jaxrpc,javax.xml.rpc,org.springfram
 ework.beans.factory,javax.xml.namespace";version=2.5.5,org.springfram
 ework.jmx.support;uses:="javax.naming,org.springframework.aop.target,
 org.apache.commons.logging,org.springframework.aop,org.springframewor
 k.util,org.springframework.jmx,javax.management,org.springframework.j
 ndi,org.springframework.core,javax.management.remote,org.springframew
 ork.aop.framework,org.springframework.beans.factory";version=2.5.5,or
 g.springframework.web.context.request;uses:="org.apache.commons.loggi
 ng,org.springframework.context.i18n,org.apache.log4j,javax.faces.cont
 ext,org.springframework.util,org.springframework.beans.factory.config
 ,org.springframework.core,javax.servlet,org.springframework.ui,org.sp
 ringframework.web.util,javax.servlet.http,org.springframework.beans.f
 actory";version=2.5.5,org.springframework.instrument.classloading.oc4
 j;uses:="org.springframework.instrument.classloading,org.springframew
 ork.util,oracle.classloader.util";version=2.5.5,org.springframework.r
 emoting.jaxws;uses:="org.springframework.aop.support,org.apache.commo
 ns.logging,com.sun.net.httpserver,javax.jws,org.aopalliance.intercept
 ,org.springframework.util,javax.xml.namespace,javax.xml.ws.handler,or
 g.springframework.remoting,org.springframework.core.task.support,org.
 springframework.aop.framework,javax.xml.soap,org.springframework.core
 .task,javax.xml.ws,org.springframework.remoting.soap,javax.xml.ws.soa
 p,org.springframework.beans.factory";version=2.5.5,org.springframewor
 k.mail;uses:="org.springframework.core,org.springframework.util";vers
 ion=2.5.5,org.springframework.orm.hibernate3;uses:="org.hibernate.uti
 l,org.apache.commons.logging,org.aopalliance.intercept,org.hibernate.
 jdbc,org.springframework.beans,org.hibernate.type,org.hibernate.excep
 tion,org.hibernate.event,org.springframework.dao.support,org.springfr
 amework.core,org.hibernate.connection,org.hibernate.classic,org.hiber
 nate.impl,org.hibernate.transaction,org.hibernate.context,org.springf
 ramework.jdbc.datasource,org.springframework.beans.factory,org.spring
 framework.transaction,org.hibernate.engine,org.hibernate.cfg,org.spri
 ngframework.util,org.springframework.core.io,org.springframework.jdbc
 .support,org.hibernate.dialect,org.hibernate,javax.sql,org.springfram
 ework.orm,org.springframework.jdbc.support.lob,org.hibernate.criterio
 n,javax.transaction,org.hibernate.tool.hbm2ddl,org.springframework.tr
 ansaction.jta,org.hibernate.cache,org.springframework.dao,org.springf
 ramework.transaction.support";version=2.5.5,org.springframework.stere
 otype;version=2.5.5,org.springframework.ui.freemarker;uses:="org.apac
 he.commons.logging,freemarker.cache,org.springframework.util,org.spri
 ngframework.core.io,org.springframework.context,org.springframework.c
 ore.io.support,freemarker.template,org.springframework.beans.factory"
 ;version=2.5.5,org.springframework.remoting.httpinvoker;uses:="org.sp
 ringframework.aop.support,org.springframework.web,org.apache.commons.
 logging,com.sun.net.httpserver,org.aopalliance.intercept,org.springfr
 amework.util,org.apache.commons.httpclient,javax.servlet,org.springfr
 amework.remoting,org.springframework.remoting.support,org.apache.comm
 ons.httpclient.methods,org.apache.commons.httpclient.params,org.sprin
 gframework.aop.framework,org.springframework.web.util,org.springframe
 work.remoting.rmi,javax.servlet.http,org.springframework.beans.factor
 y";version=2.5.5,org.springframework.aop.support;uses:="org.apache.co
 mmons.logging,org.springframework.aop,org.aopalliance.intercept,org.s
 pringframework.util,org.aopalliance.aop,org.springframework.core,org.
 springframework.beans.factory";version=2.5.5,org.springframework.jms.
 listener;uses:="org.springframework.transaction,org.apache.commons.lo
 gging,javax.jms,org.springframework.util,org.springframework.context,
 org.springframework.jms,org.springframework.jms.support.destination,o
 rg.springframework.core,org.springframework.scheduling,org.springfram
 ework.jms.connection,org.springframework.jms.support,org.springframew
 ork.core.task,org.springframework.transaction.support,org.springframe
 work.beans.factory";version=2.5.5,org.springframework.beans.factory.s
 erviceloader;uses:="org.springframework.util,org.springframework.bean
 s.factory.config,org.springframework.beans.factory";version=2.5.5,org
 .springframework.jca.support;uses:="javax.resource,javax.resource.spi
 ,org.springframework.util,org.springframework.beans,javax.resource.sp
 i.work,org.springframework.beans.factory";version=2.5.5,org.springfra
 mework.remoting.caucho;uses:="org.springframework.web,com.caucho.hess
 ian.client,org.apache.commons.logging,com.caucho.hessian.io,com.sun.n
 et.httpserver,org.aopalliance.intercept,org.springframework.util,com.
 caucho.hessian.server,com.caucho.burlap.io,javax.servlet,org.springfr
 amework.remoting.support,org.springframework.remoting,com.caucho.burl
 ap.server,org.springframework.aop.framework,com.caucho.burlap.client,
 org.springframework.web.util,javax.servlet.http,org.springframework.b
 eans.factory";version=2.5.5,org.springframework.jms.listener.serverse
 ssion;uses:="org.springframework.jms.listener,org.apache.commons.logg
 ing,javax.jms,org.springframework.jms.support,org.apache.commons.pool
 .impl,org.springframework.util,org.apache.commons.pool,org.springfram
 ework.scheduling.timer,org.springframework.core.task";version=2.5.5,o
 rg.springframework.aop;uses:="org.springframework.core,org.aopallianc
 e.intercept,org.aopalliance.aop";version=2.5.5,org.springframework.co
 ntext.support;uses:="org.apache.commons.logging,org.springframework.c
 ontext.i18n,org.springframework.beans.support,org.springframework.uti
 l,org.springframework.core.io,org.springframework.beans,org.springfra
 mework.beans.factory.xml,org.springframework.context,org.springframew
 ork.beans.factory.config,org.springframework.core.io.support,org.spri
 ngframework.context.event,org.xml.sax,org.springframework.beans.facto
 ry.support,org.springframework.core,org.springframework.beans.factory
 ";version=2.5.5,org.springframework.instrument.classloading.glassfish
 ;uses:="org.springframework.instrument.classloading,com.sun.enterpris
 e.loader,org.springframework.util,javax.persistence.spi";version=2.5.
 5,org.springframework.jmx;uses:=org.springframework.core;version=2.5.
 5,org.springframework.jmx.access;uses:="org.apache.commons.logging,ja
 vax.management.openmbean,org.aopalliance.intercept,org.springframewor
 k.util,org.springframework.jmx,org.springframework.beans,javax.manage
 ment,org.springframework.core,javax.management.remote,org.springframe
 work.jmx.support,org.springframework.aop.framework,org.springframewor
 k.beans.factory";version=2.5.5,org.springframework.scheduling.support
 ;uses:="org.apache.commons.logging,org.springframework.beans.support,
 org.springframework.util,org.springframework.beans.factory";version=2
 .5.5,org.springframework.jms;uses:="org.springframework.core,javax.jm
 s";version=2.5.5,org.springframework.orm.jpa.support;uses:="org.sprin
 gframework.orm.jpa,org.apache.commons.logging,org.springframework.bea
 ns.factory.annotation,org.springframework.beans,org.springframework.b
 eans.factory.config,org.springframework.dao.support,org.springframewo
 rk.core,org.springframework.beans.factory.support,org.springframework
 .jndi,javax.servlet,javax.persistence,org.springframework.beans.facto
 ry,javax.naming,org.springframework.web.filter,org.springframework.ut
 il,org.springframework.web.context,org.springframework.ui,org.springf
 ramework.web.context.request,org.springframework.dao,org.springframew
 ork.transaction.support,org.springframework.web.context.support,javax
 .servlet.http";version=2.5.5,org.springframework.core;uses:="org.spri
 ngframework.asm,org.apache.commons.logging,org.apache.commons.collect
 ions,org.springframework.util,edu.emory.mathcs.backport.java.util.con
 current,org.springframework.asm.commons,org.apache.commons.collection
 s.map";version=2.5.5,org.springframework.jms.core.support;uses:="org.
 apache.commons.logging,javax.jms,org.springframework.jms.core,org.spr
 ingframework.beans.factory";version=2.5.5,org.springframework.jca.cci
 ;uses:="javax.resource,org.springframework.dao";version=2.5.5,org.spr
 ingframework.orm.ibatis.support;uses:="org.springframework.orm.ibatis
 ,javax.sql,org.springframework.jdbc.support.lob,org.springframework.u
 til,com.ibatis.sqlmap.client,org.springframework.dao.support,org.spri
 ngframework.transaction.support,com.ibatis.sqlmap.engine.type";versio
 n=2.5.5,org.springframework.jca.cci.core;uses:="org.springframework.j
 ca.cci,org.apache.commons.logging,javax.resource,javax.resource.cci,o
 rg.springframework.util,org.springframework.dao,org.springframework.j
 ca.cci.connection";version=2.5.5,org.springframework.cache.ehcache;us
 es:="org.apache.commons.logging,org.springframework.util,org.springfr
 amework.core.io,net.sf.ehcache.store,net.sf.ehcache.bootstrap,net.sf.
 ehcache,net.sf.ehcache.constructs.blocking,org.springframework.beans.
 factory";version=2.5.5,org.springframework.scheduling.quartz;uses:="o
 rg.apache.commons.logging,org.quartz.xml,org.quartz.simpl,org.springf
 ramework.beans,org.quartz.impl.jdbcjobstore,org.springframework.core,
 org.quartz.utils,org.springframework.jdbc.datasource,org.springframew
 ork.beans.factory,org.springframework.transaction,org.quartz.spi,org.
 springframework.beans.support,org.quartz,org.springframework.util,org
 .springframework.core.io,org.springframework.context,org.springframew
 ork.core.io.support,org.springframework.scheduling,org.quartz.impl,ja
 vax.sql,org.springframework.core.task,org.springframework.transaction
 .support";version=2.5.5,org.springframework.util.comparator;uses:=org
 .springframework.util;version=2.5.5,org.springframework.orm.ibatis;us
 es:="org.apache.commons.logging,com.ibatis.sqlmap.engine.impl,com.iba
 tis.common.util,com.ibatis.sqlmap.engine.transaction,org.springframew
 ork.core,com.ibatis.common.xml,com.ibatis.sqlmap.client.event,com.iba
 tis.sqlmap.client,org.springframework.jdbc.datasource,com.ibatis.sqlm
 ap.engine.builder.xml,org.springframework.beans.factory,org.springfra
 mework.jdbc,org.springframework.util,org.springframework.core.io,org.
 springframework.jdbc.support,com.ibatis.sqlmap.engine.transaction.ext
 ernal,javax.sql,org.springframework.jdbc.support.lob,org.springframew
 ork.dao";version=2.5.5,org.springframework.ejb.access;uses:="javax.na
 ming,org.apache.commons.logging,javax.ejb,org.aopalliance.intercept,o
 rg.springframework.util,org.springframework.jndi,org.springframework.
 core,org.springframework.remoting,org.springframework.aop.framework,j
 avax.rmi,org.springframework.remoting.rmi,org.springframework.beans.f
 actory";version=2.5.5,org.springframework.beans.support;uses:="org.ap
 ache.commons.logging,org.springframework.util,org.springframework.cor
 e.io,org.springframework.beans,org.springframework.core.io.support,or
 g.springframework.beans.propertyeditors";version=2.5.5,org.springfram
 ework.aop.scope;uses:="org.springframework.aop.support,org.springfram
 ework.aop.target,org.springframework.aop,org.springframework.util,org
 .springframework.beans,org.springframework.beans.factory.config,org.a
 opalliance.aop,org.springframework.beans.factory.support,org.springfr
 amework.aop.framework.autoproxy,org.springframework.aop.framework,org
 .springframework.beans.factory";version=2.5.5,org.springframework.aop
 .aspectj;uses:="org.springframework.aop.support,org.apache.commons.lo
 gging,org.springframework.aop.interceptor,org.aspectj.weaver,org.aopa
 lliance.intercept,org.springframework.aop,org.aspectj.bridge,org.aspe
 ctj.weaver.tools,org.aspectj.lang,org.springframework.core,org.aspect
 j.weaver.patterns,org.springframework.aop.framework.autoproxy,org.asp
 ectj.weaver.ast,org.springframework.beans.factory,org.aspectj.runtime
 .internal,org.springframework.util,org.aopalliance.aop,org.aspectj.la
 ng.reflect,org.aspectj.weaver.internal.tools,org.springframework.aop.
 framework,org.aspectj.weaver.reflect";version=2.5.5,org.springframewo
 rk.aop.support.annotation;uses:="org.springframework.aop.support,org.
 springframework.aop,org.springframework.util,org.springframework.core
 .annotation";version=2.5.5,org.aopalliance.aop;version=1.0,org.spring
 framework.jdbc.support;uses:="org.springframework.jdbc,org.apache.com
 mons.logging,org.springframework.util,org.springframework.core.io,org
 .springframework.beans,org.springframework.beans.factory.xml,org.spri
 ngframework.beans.factory.support,org.springframework.core,javax.sql,
 org.springframework.dao,org.springframework.jdbc.datasource,org.sprin
 gframework.beans.factory";version=2.5.5,org.springframework.ui;uses:=
 "org.springframework.core,org.springframework.util";version=2.5.5,org
 .springframework.metadata;version=2.5.5,org.springframework.jmx.expor
 t.annotation;uses:="org.springframework.beans.annotation,org.springfr
 amework.jmx.export.metadata,org.springframework.jmx.export.assembler,
 org.springframework.util,org.springframework.jmx.export.naming,org.sp
 ringframework.beans,org.springframework.core.annotation,org.springfra
 mework.jmx.export";version=2.5.5,org.springframework.scripting.groovy
 ;uses:="groovy.lang,org.springframework.util,org.springframework.bean
 s,org.springframework.beans.factory.config,org.springframework.script
 ing,org.springframework.beans.factory,org.codehaus.groovy.control";ve
 rsion=2.5.5,org.springframework.orm;uses:=org.springframework.dao;ver
 sion=2.5.5,org.springframework.jms.support;uses:="org.springframework
 .core,org.apache.commons.logging,javax.jms,org.springframework.util,o
 rg.springframework.jms,org.springframework.beans.factory";version=2.5
 .5,org.springframework.jca.cci.core.support;uses:="org.springframewor
 k.jca.cci,javax.resource.cci,org.springframework.jca.cci.core,org.spr
 ingframework.util,org.springframework.dao.support,org.springframework
 .jca.cci.connection";version=2.5.5,org.springframework.jdbc.support.l
 ob;uses:="org.springframework.transaction,org.apache.commons.logging,
 org.springframework.util,org.springframework.jdbc.support.nativejdbc,
 javax.transaction,org.springframework.dao,org.springframework.transac
 tion.support";version=2.5.5,org.springframework.scripting.config;uses
 :="org.springframework.beans.factory.support,org.springframework.scri
 pting.support,org.springframework.util,org.springframework.beans,org.
 springframework.beans.factory.xml,org.springframework.beans.factory.c
 onfig,org.springframework.util.xml,org.w3c.dom";version=2.5.5,org.spr
 ingframework.jms.remoting;uses:="org.springframework.jms.listener,org
 .springframework.aop.support,org.apache.commons.logging,javax.jms,org
 .aopalliance.intercept,org.springframework.util,org.springframework.j
 ms.support.destination,org.springframework.jms.support.converter,org.
 springframework.remoting.support,org.springframework.remoting,org.spr
 ingframework.jms.connection,org.springframework.jms.support,org.sprin
 gframework.aop.framework,org.springframework.beans.factory";version=2
 .5.5,org.springframework.ui.velocity;uses:="org.apache.velocity.runti
 me,org.apache.commons.logging,org.apache.commons.collections,org.spri
 ngframework.util,org.apache.velocity.exception,org.apache.velocity.co
 ntext,org.springframework.core.io,org.springframework.context,org.spr
 ingframework.core.io.support,org.apache.velocity.runtime.log,org.apac
 he.velocity,org.apache.velocity.app,org.apache.velocity.runtime.resou
 rce,org.apache.velocity.runtime.resource.loader,org.springframework.b
 eans.factory";version=2.5.5,org.springframework.jms.core;uses:="org.s
 pringframework.jms.support.converter,org.apache.commons.logging,org.s
 pringframework.jms.connection,javax.jms,org.springframework.jms.suppo
 rt,org.springframework.util,org.springframework.transaction.support,o
 rg.springframework.jms,org.springframework.jms.support.destination";v
 ersion=2.5.5,org.springframework.orm.jpa.persistenceunit;uses:="org.a
 pache.commons.logging,org.springframework.context.weaving,org.springf
 ramework.util,org.springframework.core.io,javax.xml.parsers,org.sprin
 gframework.context,org.springframework.core.io.support,org.springfram
 ework.util.xml,org.w3c.dom,org.xml.sax,org.springframework.jdbc.datas
 ource.lookup,org.springframework.core,javax.sql,org.springframework.i
 nstrument.classloading,javax.persistence.spi,javax.persistence,org.sp
 ringframework.beans.factory";version=2.5.5,org.springframework.script
 ing;uses:=org.springframework.core;version=2.5.5,org.springframework.
 core.enums;uses:="org.springframework.util.comparator,org.apache.comm
 ons.logging,org.springframework.util";version=2.5.5,org.springframewo
 rk.web.context.support;uses:="org.apache.commons.logging,org.springfr
 amework.context.support,org.springframework.beans.factory.annotation,
 org.springframework.beans,org.springframework.beans.factory.config,or
 g.xml.sax,org.springframework.beans.factory.support,javax.servlet,org
 .springframework.web.util,org.springframework.beans.factory,org.sprin
 gframework.web,org.springframework.ui.context,org.springframework.uti
 l,org.springframework.core.io,org.springframework.context,org.springf
 ramework.beans.factory.xml,org.springframework.core.io.support,org.sp
 ringframework.web.context,org.springframework.ui.context.support,org.
 springframework.web.context.request,javax.servlet.http";version=2.5.5
 ,org.springframework.instrument.classloading.weblogic;uses:="org.spri
 ngframework.instrument.classloading,org.springframework.util";version
 =2.5.5,org.springframework.aop.interceptor;uses:="org.springframework
 .aop.support,org.apache.commons.logging,org.aopalliance.intercept,org
 .springframework.aop,org.springframework.util,org.aopalliance.aop,com
 .jamonapi,org.springframework.core,org.springframework.beans.factory"
 ;version=2.5.5,org.springframework.context.access;uses:="javax.naming
 ,org.apache.commons.logging,org.springframework.util,org.springframew
 ork.context.support,org.springframework.beans,org.springframework.con
 text,org.springframework.core.io.support,org.springframework.jndi,org
 .springframework.beans.factory.access,org.springframework.beans.facto
 ry";version=2.5.5,org.springframework.scripting.bsh;uses:="org.spring
 framework.aop.support,org.springframework.core,org.springframework.ut
 il,org.springframework.scripting,bsh,org.springframework.beans.factor
 y";version=2.5.5,org.springframework.scheduling.concurrent;uses:="org
 .apache.commons.logging,org.springframework.scheduling,org.springfram
 ework.util,org.springframework.scheduling.support,org.springframework
 .core.task,org.springframework.beans.factory";version=2.5.5,org.sprin
 gframework.core.task.support;uses:="org.springframework.util,org.spri
 ngframework.core.task";version=2.5.5,org.springframework.orm.hibernat
 e3.support;uses:="org.springframework.aop.support,org.apache.commons.
 logging,org.hibernate.util,org.hibernate.event,org.springframework.da
 o.support,javax.servlet,org.hibernate.event.def,org.hibernate.engine,
 org.hibernate.persister.entity,org.springframework.web.filter,org.spr
 ingframework.aop.scope,org.springframework.web.context,org.springfram
 ework.jdbc.support,org.springframework.ui,org.springframework.web.con
 text.request,org.hibernate,org.springframework.jdbc.support.lob,javax
 .transaction,org.hibernate.usertype,org.springframework.dao,org.sprin
 gframework.orm.hibernate3,org.springframework.web.context.support,org
 .springframework.transaction.support,javax.servlet.http";version=2.5.
 5,org.springframework.aop.framework.autoproxy;uses:="org.springframew
 ork.aop.support,org.springframework.aop.target,org.springframework.ao
 p.framework.adapter,org.apache.commons.logging,org.springframework.ao
 p,org.springframework.util,org.springframework.beans,org.springframew
 ork.beans.factory.config,org.aopalliance.aop,org.springframework.core
 ,org.springframework.aop.framework,org.springframework.beans.factory"
 ;version=2.5.5,org.springframework.instrument.classloading;uses:="org
 .springframework.core,org.apache.commons.logging,org.springframework.
 util,org.springframework.instrument";version=2.5.5,org.springframewor
 k.orm.jdo.support;uses:="org.apache.commons.logging,org.springframewo
 rk.web.filter,org.springframework.web.context,org.springframework.dao
 .support,org.springframework.orm.jdo,javax.servlet,org.springframewor
 k.ui,org.springframework.web.context.request,javax.jdo,org.springfram
 ework.dao,org.springframework.web.context.support,org.springframework
 .transaction.support,javax.servlet.http";version=2.5.5,org.springfram
 ework.web.util;uses:="org.apache.commons.logging,org.springframework.
 util,org.springframework.beans,javax.servlet.jsp,org.springframework.
 core,org.apache.taglibs.standard.lang.support,javax.servlet,javax.ser
 vlet.jsp.el,javax.servlet.jsp.tagext,javax.servlet.http";version=2.5.
 5,org.springframework.jndi.support;uses:="org.springframework.jndi,ja
 vax.naming,org.springframework.beans,org.springframework.beans.factor
 y";version=2.5.5,org.springframework.remoting.rmi;uses:="org.springfr
 amework.aop.support,javax.naming,org.apache.commons.logging,org.aopal
 liance.intercept,org.springframework.util,org.omg.CORBA,org.omg.CORBA
 .portable,org.springframework.core,org.springframework.jndi,org.sprin
 gframework.remoting.support,org.springframework.remoting,org.omg.CORB
 A_2_3.portable,org.springframework.aop.framework,javax.rmi,javax.rmi.
 CORBA,org.springframework.beans.factory";version=2.5.5,org.springfram
 ework.core.type;uses:=org.springframework.core.annotation;version=2.5
 .5,org.springframework.jdbc.datasource;uses:="org.springframework.tra
 nsaction,org.springframework.jdbc,org.apache.commons.logging,org.spri
 ngframework.util,org.springframework.beans,org.springframework.core,j
 avax.sql,org.springframework.transaction.support,org.springframework.
 beans.factory";version=2.5.5,org.springframework.remoting.soap;uses:=
 "org.springframework.remoting,javax.xml.namespace";version=2.5.5,org.
 springframework.web;uses:="javax.servlet,javax.servlet.http";version=
 2.5.5,org.springframework.transaction;uses:="org.springframework.core
 ,org.springframework.util";version=2.5.5,org.springframework.context.
 weaving;uses:="org.aspectj.weaver.loadtime,org.springframework.instru
 ment.classloading.weblogic,org.apache.commons.logging,org.springframe
 work.util,org.springframework.instrument.classloading.glassfish,org.s
 pringframework.beans,org.springframework.beans.factory.config,org.spr
 ingframework.core,org.springframework.instrument.classloading,org.spr
 ingframework.instrument.classloading.oc4j,org.springframework.beans.f
 actory";version=2.5.5,org.springframework.aop.framework.adapter;uses:
 ="org.springframework.aop.support,org.apache.commons.logging,org.aopa
 lliance.intercept,org.springframework.aop,org.springframework.util,or
 g.springframework.beans,org.springframework.beans.factory.config,org.
 aopalliance.aop";version=2.5.5,org.springframework.jdbc.core.namedpar
 am;uses:="org.springframework.jdbc.core.support,org.springframework.u
 til,org.springframework.beans,org.springframework.jdbc.support.rowset
 ,org.springframework.dao.support,org.springframework.jdbc.support,jav
 ax.sql,org.springframework.jdbc.core,org.springframework.dao";version
 =2.5.5,org.springframework.ui.jasperreports;uses:="net.sf.jasperrepor
 ts.engine.data,net.sf.jasperreports.engine.export,net.sf.jasperreport
 s.engine";version=2.5.5,org.springframework.beans.factory.generic;use
 s:="org.springframework.beans.factory.support,org.springframework.uti
 l,org.springframework.beans,org.springframework.beans.factory.config,
 org.springframework.core.annotation,org.springframework.beans.factory
 ";version=2.5.5,org.springframework.core.io.support;uses:="org.apache
 .commons.logging,org.springframework.util,org.springframework.core.io
 ";version=2.5.5,org.springframework.jms.support.destination;uses:="ja
 vax.naming,org.apache.commons.logging,javax.jms,org.springframework.u
 til,org.springframework.beans,org.springframework.jms,org.springframe
 work.jndi,org.springframework.core,org.springframework.jms.support,or
 g.springframework.beans.factory";version=2.5.5,org.springframework.jd
 bc.datasource.lookup;uses:="javax.naming,org.springframework.transact
 ion,org.springframework.util,org.springframework.beans,org.springfram
 ework.jndi,org.springframework.core,javax.sql,org.springframework.dao
 ,org.springframework.jdbc.datasource,org.springframework.transaction.
 support,org.springframework.beans.factory";version=2.5.5,org.springfr
 amework.jms.support.converter;uses:="javax.jms,org.springframework.ut
 il,org.springframework.jms";version=2.5.5,org.springframework.beans.f
 actory.wiring;uses:="org.apache.commons.logging,org.springframework.u
 til,org.springframework.beans.factory.config,org.springframework.bean
 s.factory";version=2.5.5,org.springframework.remoting;uses:=org.sprin
 gframework.core;version=2.5.5,org.springframework.jms.listener.endpoi
 nt;uses:="org.springframework.jca.endpoint,javax.resource,org.apache.
 commons.logging,javax.jms,javax.resource.spi,org.springframework.bean
 s,javax.resource.spi.endpoint,org.springframework.jms.support.destina
 tion";version=2.5.5,org.springframework.jca.endpoint;uses:="org.sprin
 gframework.aop.support,javax.resource,org.apache.commons.logging,org.
 aopalliance.intercept,org.springframework.util,org.springframework.co
 ntext,org.aopalliance.aop,javax.resource.spi.endpoint,javax.resource.
 spi,javax.transaction,org.springframework.aop.framework,javax.transac
 tion.xa,org.springframework.transaction.jta,org.springframework.beans
 .factory";version=2.5.5,org.springframework.ui.context.support;uses:=
 "org.apache.commons.logging,org.springframework.ui.context,org.spring
 framework.util,org.springframework.context.support,org.springframewor
 k.context";version=2.5.5,org.springframework.core.type.classreading;u
 ses:="org.springframework.asm,org.springframework.asm.commons,org.spr
 ingframework.util,org.springframework.core.io,org.springframework.cor
 e.type";version=2.5.5,org.springframework.jms.listener.adapter;uses:=
 "org.springframework.jms.listener,org.springframework.jms.support.con
 verter,org.apache.commons.logging,javax.jms,org.springframework.jms.s
 upport,org.springframework.util,org.springframework.jms,org.springfra
 mework.jms.support.destination";version=2.5.5,org.springframework.tra
 nsaction.jta;uses:="javax.naming,org.springframework.transaction,com.
 ibm.wsspi.uow,org.apache.commons.logging,org.springframework.util,org
 .objectweb.jotm,org.springframework.jndi,javax.transaction,org.spring
 framework.transaction.support,org.springframework.beans.factory";vers
 ion=2.5.5,org.springframework.aop.aspectj.annotation;uses:="org.sprin
 gframework.aop.support,org.springframework.aop.aspectj.autoproxy,org.
 apache.commons.logging,org.springframework.aop,org.springframework.ut
 il,org.springframework.aop.aspectj,org.springframework.beans.factory.
 config,org.aopalliance.aop,org.springframework.core.annotation,org.as
 pectj.lang.annotation,org.springframework.core,org.aspectj.lang.refle
 ct,org.springframework.aop.framework,org.springframework.beans.factor
 y";version=2.5.5,org.springframework.dao.annotation;uses:="org.spring
 framework.aop.support,org.springframework.aop,org.springframework.uti
 l,org.springframework.beans,org.springframework.aop.support.annotatio
 n,org.springframework.beans.factory.config,org.aopalliance.aop,org.sp
 ringframework.dao.support,org.springframework.core,org.springframewor
 k.aop.framework,org.springframework.stereotype,org.springframework.be
 ans.factory";version=2.5.5,org.springframework.scheduling.timer;uses:
 ="org.springframework.core,org.apache.commons.logging,org.springframe
 work.scheduling,org.springframework.util,org.springframework.scheduli
 ng.support,org.springframework.beans.factory";version=2.5.5,org.sprin
 gframework.ejb.interceptor;uses:="javax.annotation,javax.ejb,org.spri
 ngframework.context.access,org.springframework.beans.factory.access,o
 rg.springframework.beans.factory.annotation,org.springframework.conte
 xt,javax.interceptor,org.springframework.beans.factory.config,org.spr
 ingframework.beans.factory";version=2.5.5
Private-Package: org.springframework.asm,org.springframework.asm.commo
 ns,org.springframework.asm.signature
Ignore-Package: org.springframework.asm,org.springframework.asm.common
 s,org.springframework.asm.signature
Spring-Version: 2.5.5
Implementation-Title: Spring Framework
Implementation-Version: 2.5.5
Tool: Bnd-0.0.208
Bundle-Name: spring
Created-By: 1.6.0_03 (Sun Microsystems Inc.)
Ant-Version: Apache Ant 1.7.0
Bundle-Version: 2.5.5
Bnd-LastModified: 1214959363256
Bundle-ManifestVersion: 2
Bundle-Description: Spring Framework
Bundle-SymbolicName: org.springframework.bundle.spring
Import-Package: bsh;resolution:=optional,com.caucho.burlap.client;reso
 lution:=optional,com.caucho.burlap.io;resolution:=optional,com.caucho
 .burlap.server;resolution:=optional,com.caucho.hessian.client;resolut
 ion:=optional,com.caucho.hessian.io;resolution:=optional,com.caucho.h
 essian.server;resolution:=optional,com.evermind.server;resolution:=op
 tional,com.ibatis.common.util;resolution:=optional,com.ibatis.common.
 xml;resolution:=optional,com.ibatis.sqlmap.client;resolution:=optiona
 l,com.ibatis.sqlmap.client.event;resolution:=optional,com.ibatis.sqlm
 ap.engine.builder.xml;resolution:=optional,com.ibatis.sqlmap.engine.i
 mpl;resolution:=optional,com.ibatis.sqlmap.engine.transaction;resolut
 ion:=optional,com.ibatis.sqlmap.engine.transaction.external;resolutio
 n:=optional,com.ibatis.sqlmap.engine.type;resolution:=optional,com.ib
 m.websphere.management;resolution:=optional,com.ibm.websphere.rsadapt
 er;resolution:=optional,com.ibm.ws.Transaction;resolution:=optional,c
 om.ibm.ws.rsadapter.jdbc;resolution:=optional,com.ibm.wsspi.uow;resol
 ution:=optional,com.jamonapi;resolution:=optional,com.mchange.v2.c3p0
 ;resolution:=optional,com.sun.enterprise.loader;resolution:=optional,
 com.sun.net.httpserver;resolution:=optional,com.sun.rowset;resolution
 :=optional,commonj.timers;resolution:=optional,commonj.work;resolutio
 n:=optional,edu.emory.mathcs.backport.java.util.concurrent;resolution
 :=optional,freemarker.cache;resolution:=optional,freemarker.template;
 resolution:=optional,groovy.lang;resolution:=optional,javax.activatio
 n;resolution:=optional,javax.annotation;resolution:=optional,javax.ej
 b;resolution:=optional,javax.el;resolution:=optional,javax.faces.appl
 ication;resolution:=optional,javax.faces.context;resolution:=optional
 ,javax.faces.el;resolution:=optional,javax.faces.event;resolution:=op
 tional,javax.interceptor;resolution:=optional,javax.jdo;resolution:=o
 ptional,javax.jdo.datastore;resolution:=optional,javax.jms;resolution
 :=optional,javax.jws;resolution:=optional,javax.mail;resolution:=opti
 onal,javax.mail.internet;resolution:=optional,javax.management;resolu
 tion:=optional,javax.management.modelmbean;resolution:=optional,javax
 .management.openmbean;resolution:=optional,javax.management.remote;re
 solution:=optional,javax.naming;resolution:=optional,javax.persistenc
 e;resolution:=optional,javax.persistence.spi;resolution:=optional,jav
 ax.resource;resolution:=optional,javax.resource.cci;resolution:=optio
 nal,javax.resource.spi;resolution:=optional,javax.resource.spi.endpoi
 nt;resolution:=optional,javax.resource.spi.work;resolution:=optional,
 javax.rmi;resolution:=optional,javax.rmi.CORBA;resolution:=optional,j
 avax.servlet;resolution:=optional,javax.servlet.http;resolution:=opti
 onal,javax.servlet.jsp;resolution:=optional,javax.servlet.jsp.el;reso
 lution:=optional,javax.servlet.jsp.tagext;resolution:=optional,javax.
 sql;resolution:=optional,javax.sql.rowset;resolution:=optional,javax.
 transaction;resolution:=optional;version=1.0.1,javax.transaction.xa;r
 esolution:=optional;version=1.0.1,javax.xml.namespace;resolution:=opt
 ional,javax.xml.parsers;resolution:=optional,javax.xml.rpc;resolution
 :=optional,javax.xml.rpc.encoding;resolution:=optional,javax.xml.rpc.
 server;resolution:=optional,javax.xml.rpc.soap;resolution:=optional,j
 avax.xml.soap;resolution:=optional,javax.xml.transform;resolution:=op
 tional,javax.xml.ws;resolution:=optional,javax.xml.ws.handler;resolut
 ion:=optional,javax.xml.ws.soap;resolution:=optional,net.sf.cglib.asm
 ;resolution:=optional,net.sf.cglib.core;resolution:=optional,net.sf.c
 glib.proxy;resolution:=optional,net.sf.cglib.transform.impl;resolutio
 n:=optional,net.sf.ehcache;resolution:=optional,net.sf.ehcache.bootst
 rap;resolution:=optional,net.sf.ehcache.constructs.blocking;resolutio
 n:=optional,net.sf.ehcache.store;resolution:=optional,net.sf.jasperre
 ports.engine;resolution:=optional,net.sf.jasperreports.engine.data;re
 solution:=optional,net.sf.jasperreports.engine.export;resolution:=opt
 ional,oracle.classloader.util;resolution:=optional,oracle.j2ee.transa
 ction;resolution:=optional,oracle.sql;resolution:=optional,oracle.top
 link.essentials.ejb.cmp3;resolution:=optional,oracle.toplink.essentia
 ls.expressions;resolution:=optional,oracle.toplink.essentials.interna
 l.databaseaccess;resolution:=optional,oracle.toplink.essentials.inter
 nal.sessions;resolution:=optional,oracle.toplink.essentials.sessions;
 resolution:=optional,oracle.toplink.exceptions;resolution:=optional,o
 racle.toplink.expressions;resolution:=optional,oracle.toplink.interna
 l.databaseaccess;resolution:=optional,oracle.toplink.jndi;resolution:
 =optional,oracle.toplink.logging;resolution:=optional,oracle.toplink.
 publicinterface;resolution:=optional,oracle.toplink.queryframework;re
 solution:=optional,oracle.toplink.sessionbroker;resolution:=optional,
 oracle.toplink.sessions;resolution:=optional,oracle.toplink.threetier
 ;resolution:=optional,oracle.toplink.tools.sessionconfiguration;resol
 ution:=optional,oracle.toplink.tools.sessionmanagement;resolution:=op
 tional,org.aopalliance.aop;resolution:=optional;version=1.0,org.aopal
 liance.intercept;resolution:=optional;version=1.0,org.apache.axis.enc
 oding.ser;resolution:=optional,org.apache.catalina.loader;resolution:
 =optional,org.apache.commons.attributes;resolution:=optional,org.apac
 he.commons.collections;resolution:=optional,org.apache.commons.collec
 tions.map;resolution:=optional,org.apache.commons.httpclient;resoluti
 on:=optional,org.apache.commons.httpclient.methods;resolution:=option
 al,org.apache.commons.httpclient.params;resolution:=optional,org.apac
 he.commons.logging,org.apache.commons.pool;resolution:=optional,org.a
 pache.commons.pool.impl;resolution:=optional,org.apache.log4j;resolut
 ion:=optional,org.apache.log4j.xml;resolution:=optional,org.apache.op
 enjpa.persistence;resolution:=optional,org.apache.taglibs.standard.la
 ng.support;resolution:=optional,org.apache.velocity;resolution:=optio
 nal,org.apache.velocity.app;resolution:=optional,org.apache.velocity.
 context;resolution:=optional,org.apache.velocity.exception;resolution
 :=optional,org.apache.velocity.runtime;resolution:=optional,org.apach
 e.velocity.runtime.log;resolution:=optional,org.apache.velocity.runti
 me.resource;resolution:=optional,org.apache.velocity.runtime.resource
 .loader;resolution:=optional,org.aspectj.bridge;resolution:=optional,
 org.aspectj.lang;resolution:=optional,org.aspectj.lang.annotation;res
 olution:=optional,org.aspectj.lang.reflect;resolution:=optional,org.a
 spectj.runtime.internal;resolution:=optional,org.aspectj.util;resolut
 ion:=optional,org.aspectj.weaver;resolution:=optional,org.aspectj.wea
 ver.ast;resolution:=optional,org.aspectj.weaver.bcel;resolution:=opti
 onal,org.aspectj.weaver.internal.tools;resolution:=optional,org.aspec
 tj.weaver.loadtime;resolution:=optional,org.aspectj.weaver.patterns;r
 esolution:=optional,org.aspectj.weaver.reflect;resolution:=optional,o
 rg.aspectj.weaver.tools;resolution:=optional,org.codehaus.groovy.cont
 rol;resolution:=optional,org.eclipse.core.runtime;resolution:=optiona
 l;common=split,org.eclipse.persistence.expressions;resolution:=option
 al,org.eclipse.persistence.internal.databaseaccess;resolution:=option
 al,org.eclipse.persistence.internal.sessions;resolution:=optional,org
 .eclipse.persistence.jpa;resolution:=optional,org.eclipse.persistence
 .sessions;resolution:=optional,org.enhydra.jdbc.core;resolution:=opti
 onal,org.hibernate;resolution:=optional;version=3.1,org.hibernate.cac
 he;resolution:=optional;version=3.1,org.hibernate.cfg;resolution:=opt
 ional;version=3.1,org.hibernate.classic;resolution:=optional;version=
 3.1,org.hibernate.connection;resolution:=optional;version=3.1,org.hib
 ernate.context;resolution:=optional;version=3.1,org.hibernate.criteri
 on;resolution:=optional;version=3.1,org.hibernate.dialect;resolution:
 =optional;version=3.1,org.hibernate.ejb;resolution:=optional;version=
 3.1,org.hibernate.engine;resolution:=optional;version=3.1,org.hiberna
 te.event;resolution:=optional;version=3.1,org.hibernate.event.def;res
 olution:=optional;version=3.1,org.hibernate.exception;resolution:=opt
 ional;version=3.1,org.hibernate.impl;resolution:=optional;version=3.1
 ,org.hibernate.jdbc;resolution:=optional;version=3.1,org.hibernate.pe
 rsister.entity;resolution:=optional;version=3.1,org.hibernate.tool.hb
 m2ddl;resolution:=optional;version=3.1,org.hibernate.transaction;reso
 lution:=optional;version=3.1,org.hibernate.type;resolution:=optional;
 version=3.1,org.hibernate.usertype;resolution:=optional;version=3.1,o
 rg.hibernate.util;resolution:=optional;version=3.1,org.jboss.resource
 .adapter.jdbc;resolution:=optional,org.jruby;resolution:=optional,org
 .jruby.ast;resolution:=optional,org.jruby.exceptions;resolution:=opti
 onal,org.jruby.javasupport;resolution:=optional,org.jruby.runtime;res
 olution:=optional,org.jruby.runtime.builtin;resolution:=optional,org.
 objectweb.jotm;resolution:=optional,org.omg.CORBA;resolution:=optiona
 l,org.omg.CORBA.portable;resolution:=optional,org.omg.CORBA_2_3.porta
 ble;resolution:=optional,org.quartz;resolution:=optional,org.quartz.i
 mpl;resolution:=optional,org.quartz.impl.jdbcjobstore;resolution:=opt
 ional,org.quartz.simpl;resolution:=optional,org.quartz.spi;resolution
 :=optional,org.quartz.utils;resolution:=optional,org.quartz.xml;resol
 ution:=optional,org.springframework.aop;resolution:=optional;version=
 2.5.5,org.springframework.aop.aspectj;resolution:=optional;version=2.
 5.5,org.springframework.aop.aspectj.annotation;resolution:=optional;v
 ersion=2.5.5,org.springframework.aop.aspectj.autoproxy;resolution:=op
 tional;version=2.5.5,org.springframework.aop.config;resolution:=optio
 nal;version=2.5.5,org.springframework.aop.framework;resolution:=optio
 nal;version=2.5.5,org.springframework.aop.framework.adapter;resolutio
 n:=optional;version=2.5.5,org.springframework.aop.framework.autoproxy
 ;resolution:=optional;version=2.5.5,org.springframework.aop.framework
 .autoproxy.target;resolution:=optional;version=2.5.5,org.springframew
 ork.aop.interceptor;resolution:=optional;version=2.5.5,org.springfram
 ework.aop.scope;resolution:=optional;version=2.5.5,org.springframewor
 k.aop.support;resolution:=optional;version=2.5.5,org.springframework.
 aop.support.annotation;resolution:=optional;version=2.5.5,org.springf
 ramework.aop.target;resolution:=optional;version=2.5.5,org.springfram
 ework.aop.target.dynamic;resolution:=optional;version=2.5.5,org.sprin
 gframework.beans;resolution:=optional;version=2.5.5,org.springframewo
 rk.beans.annotation;resolution:=optional;version=2.5.5,org.springfram
 ework.beans.factory;resolution:=optional;version=2.5.5,org.springfram
 ework.beans.factory.access;resolution:=optional;version=2.5.5,org.spr
 ingframework.beans.factory.access.el;resolution:=optional;version=2.5
 .5,org.springframework.beans.factory.annotation;resolution:=optional;
 version=2.5.5,org.springframework.beans.factory.config;resolution:=op
 tional;version=2.5.5,org.springframework.beans.factory.generic;resolu
 tion:=optional;version=2.5.5,org.springframework.beans.factory.parsin
 g;resolution:=optional;version=2.5.5,org.springframework.beans.factor
 y.serviceloader;resolution:=optional;version=2.5.5,org.springframewor
 k.beans.factory.support;resolution:=optional;version=2.5.5,org.spring
 framework.beans.factory.wiring;resolution:=optional;version=2.5.5,org
 .springframework.beans.factory.xml;resolution:=optional;version=2.5.5
 ,org.springframework.beans.propertyeditors;resolution:=optional;versi
 on=2.5.5,org.springframework.beans.support;resolution:=optional;versi
 on=2.5.5,org.springframework.cache.ehcache;resolution:=optional;versi
 on=2.5.5,org.springframework.context;resolution:=optional;version=2.5
 .5,org.springframework.context.access;resolution:=optional;version=2.
 5.5,org.springframework.context.annotation;resolution:=optional;versi
 on=2.5.5,org.springframework.context.config;resolution:=optional;vers
 ion=2.5.5,org.springframework.context.event;resolution:=optional;vers
 ion=2.5.5,org.springframework.context.i18n;resolution:=optional;versi
 on=2.5.5,org.springframework.context.support;resolution:=optional;ver
 sion=2.5.5,org.springframework.context.weaving;resolution:=optional;v
 ersion=2.5.5,org.springframework.core;resolution:=optional;version=2.
 5.5,org.springframework.core.annotation;resolution:=optional;version=
 2.5.5,org.springframework.core.enums;resolution:=optional;version=2.5
 .5,org.springframework.core.io;resolution:=optional;version=2.5.5,org
 .springframework.core.io.support;resolution:=optional;version=2.5.5,o
 rg.springframework.core.style;resolution:=optional;version=2.5.5,org.
 springframework.core.task;resolution:=optional;version=2.5.5,org.spri
 ngframework.core.task.support;resolution:=optional;version=2.5.5,org.
 springframework.core.type;resolution:=optional;version=2.5.5,org.spri
 ngframework.core.type.classreading;resolution:=optional;version=2.5.5
 ,org.springframework.core.type.filter;resolution:=optional;version=2.
 5.5,org.springframework.dao;resolution:=optional;version=2.5.5,org.sp
 ringframework.dao.annotation;resolution:=optional;version=2.5.5,org.s
 pringframework.dao.support;resolution:=optional;version=2.5.5,org.spr
 ingframework.ejb.access;resolution:=optional;version=2.5.5,org.spring
 framework.ejb.config;resolution:=optional;version=2.5.5,org.springfra
 mework.ejb.interceptor;resolution:=optional;version=2.5.5,org.springf
 ramework.ejb.support;resolution:=optional;version=2.5.5,org.springfra
 mework.instrument;resolution:=optional,org.springframework.instrument
 .classloading;resolution:=optional;version=2.5.5,org.springframework.
 instrument.classloading.glassfish;resolution:=optional;version=2.5.5,
 org.springframework.instrument.classloading.oc4j;resolution:=optional
 ;version=2.5.5,org.springframework.instrument.classloading.tomcat;res
 olution:=optional;version=2.5.5,org.springframework.instrument.classl
 oading.weblogic;resolution:=optional;version=2.5.5,org.springframewor
 k.jca.cci;resolution:=optional;version=2.5.5,org.springframework.jca.
 cci.connection;resolution:=optional;version=2.5.5,org.springframework
 .jca.cci.core;resolution:=optional;version=2.5.5,org.springframework.
 jca.cci.core.support;resolution:=optional;version=2.5.5,org.springfra
 mework.jca.cci.object;resolution:=optional;version=2.5.5,org.springfr
 amework.jca.context;resolution:=optional;version=2.5.5,org.springfram
 ework.jca.endpoint;resolution:=optional;version=2.5.5,org.springframe
 work.jca.support;resolution:=optional;version=2.5.5,org.springframewo
 rk.jca.work;resolution:=optional;version=2.5.5,org.springframework.jc
 a.work.glassfish;resolution:=optional;version=2.5.5,org.springframewo
 rk.jca.work.jboss;resolution:=optional;version=2.5.5,org.springframew
 ork.jdbc;resolution:=optional;version=2.5.5,org.springframework.jdbc.
 core;resolution:=optional;version=2.5.5,org.springframework.jdbc.core
 .metadata;resolution:=optional;version=2.5.5,org.springframework.jdbc
 .core.namedparam;resolution:=optional;version=2.5.5,org.springframewo
 rk.jdbc.core.simple;resolution:=optional;version=2.5.5,org.springfram
 ework.jdbc.core.support;resolution:=optional;version=2.5.5,org.spring
 framework.jdbc.datasource;resolution:=optional;version=2.5.5,org.spri
 ngframework.jdbc.datasource.lookup;resolution:=optional;version=2.5.5
 ,org.springframework.jdbc.object;resolution:=optional;version=2.5.5,o
 rg.springframework.jdbc.support;resolution:=optional;version=2.5.5,or
 g.springframework.jdbc.support.incrementer;resolution:=optional;versi
 on=2.5.5,org.springframework.jdbc.support.lob;resolution:=optional;ve
 rsion=2.5.5,org.springframework.jdbc.support.nativejdbc;resolution:=o
 ptional;version=2.5.5,org.springframework.jdbc.support.rowset;resolut
 ion:=optional;version=2.5.5,org.springframework.jdbc.support.xml;reso
 lution:=optional;version=2.5.5,org.springframework.jms;resolution:=op
 tional;version=2.5.5,org.springframework.jms.config;resolution:=optio
 nal;version=2.5.5,org.springframework.jms.connection;resolution:=opti
 onal;version=2.5.5,org.springframework.jms.core;resolution:=optional;
 version=2.5.5,org.springframework.jms.core.support;resolution:=option
 al;version=2.5.5,org.springframework.jms.listener;resolution:=optiona
 l;version=2.5.5,org.springframework.jms.listener.adapter;resolution:=
 optional;version=2.5.5,org.springframework.jms.listener.endpoint;reso
 lution:=optional;version=2.5.5,org.springframework.jms.listener.serve
 rsession;resolution:=optional;version=2.5.5,org.springframework.jms.r
 emoting;resolution:=optional;version=2.5.5,org.springframework.jms.su
 pport;resolution:=optional;version=2.5.5,org.springframework.jms.supp
 ort.converter;resolution:=optional;version=2.5.5,org.springframework.
 jms.support.destination;resolution:=optional;version=2.5.5,org.spring
 framework.jmx;resolution:=optional;version=2.5.5,org.springframework.
 jmx.access;resolution:=optional;version=2.5.5,org.springframework.jmx
 .export;resolution:=optional;version=2.5.5,org.springframework.jmx.ex
 port.annotation;resolution:=optional;version=2.5.5,org.springframewor
 k.jmx.export.assembler;resolution:=optional;version=2.5.5,org.springf
 ramework.jmx.export.metadata;resolution:=optional;version=2.5.5,org.s
 pringframework.jmx.export.naming;resolution:=optional;version=2.5.5,o
 rg.springframework.jmx.export.notification;resolution:=optional;versi
 on=2.5.5,org.springframework.jmx.support;resolution:=optional;version
 =2.5.5,org.springframework.jndi;resolution:=optional;version=2.5.5,or
 g.springframework.jndi.support;resolution:=optional;version=2.5.5,org
 .springframework.mail;resolution:=optional;version=2.5.5,org.springfr
 amework.mail.javamail;resolution:=optional;version=2.5.5,org.springfr
 amework.metadata;resolution:=optional;version=2.5.5,org.springframewo
 rk.metadata.commons;resolution:=optional;version=2.5.5,org.springfram
 ework.orm;resolution:=optional;version=2.5.5,org.springframework.orm.
 hibernate3;resolution:=optional;version=2.5.5,org.springframework.orm
 .hibernate3.annotation;resolution:=optional;version=2.5.5,org.springf
 ramework.orm.hibernate3.support;resolution:=optional;version=2.5.5,or
 g.springframework.orm.ibatis;resolution:=optional;version=2.5.5,org.s
 pringframework.orm.ibatis.support;resolution:=optional;version=2.5.5,
 org.springframework.orm.jdo;resolution:=optional;version=2.5.5,org.sp
 ringframework.orm.jdo.support;resolution:=optional;version=2.5.5,org.
 springframework.orm.jpa;resolution:=optional;version=2.5.5,org.spring
 framework.orm.jpa.persistenceunit;resolution:=optional;version=2.5.5,
 org.springframework.orm.jpa.support;resolution:=optional;version=2.5.
 5,org.springframework.orm.jpa.vendor;resolution:=optional;version=2.5
 .5,org.springframework.orm.toplink;resolution:=optional;version=2.5.5
 ,org.springframework.orm.toplink.support;resolution:=optional;version
 =2.5.5,org.springframework.remoting;resolution:=optional;version=2.5.
 5,org.springframework.remoting.caucho;resolution:=optional;version=2.
 5.5,org.springframework.remoting.httpinvoker;resolution:=optional;ver
 sion=2.5.5,org.springframework.remoting.jaxrpc;resolution:=optional;v
 ersion=2.5.5,org.springframework.remoting.jaxrpc.support;resolution:=
 optional;version=2.5.5,org.springframework.remoting.jaxws;resolution:
 =optional;version=2.5.5,org.springframework.remoting.rmi;resolution:=
 optional;version=2.5.5,org.springframework.remoting.soap;resolution:=
 optional;version=2.5.5,org.springframework.remoting.support;resolutio
 n:=optional;version=2.5.5,org.springframework.scheduling;resolution:=
 optional;version=2.5.5,org.springframework.scheduling.backportconcurr
 ent;resolution:=optional;version=2.5.5,org.springframework.scheduling
 .commonj;resolution:=optional;version=2.5.5,org.springframework.sched
 uling.concurrent;resolution:=optional;version=2.5.5,org.springframewo
 rk.scheduling.quartz;resolution:=optional;version=2.5.5,org.springfra
 mework.scheduling.support;resolution:=optional;version=2.5.5,org.spri
 ngframework.scheduling.timer;resolution:=optional;version=2.5.5,org.s
 pringframework.scripting;resolution:=optional;version=2.5.5,org.sprin
 gframework.scripting.bsh;resolution:=optional;version=2.5.5,org.sprin
 gframework.scripting.config;resolution:=optional;version=2.5.5,org.sp
 ringframework.scripting.groovy;resolution:=optional;version=2.5.5,org
 .springframework.scripting.jruby;resolution:=optional;version=2.5.5,o
 rg.springframework.scripting.support;resolution:=optional;version=2.5
 .5,org.springframework.stereotype;resolution:=optional;version=2.5.5,
 org.springframework.transaction;resolution:=optional;version=2.5.5,or
 g.springframework.transaction.annotation;resolution:=optional;version
 =2.5.5,org.springframework.transaction.config;resolution:=optional;ve
 rsion=2.5.5,org.springframework.transaction.interceptor;resolution:=o
 ptional;version=2.5.5,org.springframework.transaction.jta;resolution:
 =optional;version=2.5.5,org.springframework.transaction.support;resol
 ution:=optional;version=2.5.5,org.springframework.ui;resolution:=opti
 onal;version=2.5.5,org.springframework.ui.context;resolution:=optiona
 l;version=2.5.5,org.springframework.ui.context.support;resolution:=op
 tional;version=2.5.5,org.springframework.ui.freemarker;resolution:=op
 tional;version=2.5.5,org.springframework.ui.jasperreports;resolution:
 =optional;version=2.5.5,org.springframework.ui.velocity;resolution:=o
 ptional;version=2.5.5,org.springframework.util;resolution:=optional;v
 ersion=2.5.5,org.springframework.util.comparator;resolution:=optional
 ;version=2.5.5,org.springframework.util.xml;resolution:=optional;vers
 ion=2.5.5,org.springframework.validation;resolution:=optional;version
 =2.5.5,org.springframework.web;resolution:=optional;version=2.5.5,org
 .springframework.web.context;resolution:=optional;version=2.5.5,org.s
 pringframework.web.context.request;resolution:=optional;version=2.5.5
 ,org.springframework.web.context.support;resolution:=optional;version
 =2.5.5,org.springframework.web.filter;resolution:=optional;version=2.
 5.5,org.springframework.web.jsf;resolution:=optional;version=2.5.5,or
 g.springframework.web.jsf.el;resolution:=optional;version=2.5.5,org.s
 pringframework.web.util;resolution:=optional;version=2.5.5,org.w3c.do
 m;resolution:=optional,org.xml.sax;resolution:=optional,weblogic.jdbc
 .extensions;resolution:=optional,weblogic.transaction;resolution:=opt
 ional
Originally-Created-By: 1.6.0_03-b05 (Sun Microsystems Inc.)

Commits for Satyam/AuroCareEMR/src/main/resources/META-INF/MANIFEST.MF

Diff revisions: vs.
Revision Author Commited Message
1 girijabapi picture girijabapi Fri 20 Jul, 2018 05:59:17 +0000