summaryrefslogtreecommitdiffstats
path: root/site/trunk/site-publish/license.html
blob: 34562d691b57cbbaf1cb1fb958233db44adbd414 (plain)
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
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
<!--

    Licensed to the Apache Software Foundation (ASF) under one or more
    contributor license agreements.  See the NOTICE file distributed with
    this work for additional information regarding copyright ownership.
    The ASF licenses this file to You under the Apache License, Version 2.0
    (the "License"); you may not use this file except in compliance with
    the License.  You may obtain a copy of the License at

       http://www.apache.org/licenses/LICENSE- 2.0

    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
-->


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<HTML>
    <HEAD>
		<!-- generateKeywords macro -->
	    <META name="description" content="Apache Tuscany">
        <META name="keywords" content="apache, apache tuscany, tuscany, service, services, fabric, soa, service oriented architecture,  sca, service component architecture, das, sdo, csa, ruby, opensource">
		<!-- generateKeywords macro end -->
		
        <LINK type="text/css" rel="stylesheet" href="http://tuscany.apache.org/stylesheets/default.css">
        <LINK rel="SHORTCUT ICON" href="https://cwiki.apache.org/confluence/display/TUSCANY/$images/favicon.ico">   
        <TITLE>Apache Tuscany : License</TITLE>
    <META http-equiv="Content-Type" content="text/html;charset=UTF-8"></HEAD>
    
    <BODY onload="init()">
        <!-- topNav macro -->
		<TABLE valign="top" border="0" cellspacing="0" cellpadding="0" width="100%" background="http://tuscany.apache.org/images/TuscanyLogoNEW_Text_120px_bg.jpg">
			<TR>
				<TD valing="top" align="left">
					<A href="https://cwiki.apache.org/confluence/pages/viewpage.action?spaceKey=TUSCANY&title=$siteroot"><IMG src="http://tuscany.apache.org/images/TuscanyLogoNEW_Text_120px_bg.jpg" height="91" width="25" border="0"></A>
				</TD>
				<TD>
					<A href="http://tuscany.apache.org/"><IMG src="http://tuscany.apache.org/images/TuscanyLogo.jpg" border="0"></A>
				</TD>
				
				<TD width="100%">
					&nbsp;
				</TD>

				<!-- Adds the edit page link to the top banner-->
				<TD valign="bottom">
					<DIV style="padding: 2px 10px; margin: 0px;">
						<A href="https://cwiki.apache.org/confluence/pages/editpage.action?pageId=47503">
						<IMG src="http://tuscany.apache.org/images/notep_16.gif" height="16" width="16" border="0" align="absmiddle" title="Edit Page"></A>
					</DIV>
				</TD>

			</TR>
		</TABLE>
        <!-- topNav macro end -->

		<!-- breadCrumbs macro -->
		<TABLE border="0" cellpadding="2" cellspacing="0" width="100%">
			<TR class="topBar">
				<TD align="left" valign="middle" class="topBarDiv" nowrap="true" width="100%">
					&nbsp;<A href="home.html" title="Apache Tuscany">Apache Tuscany</A>&nbsp;&gt;&nbsp;<A href="home.html" title="Home">Home</A>&nbsp;&gt;&nbsp;<A href="general-info.html" title="General Info">General Info</A>&nbsp;&gt;&nbsp;<A href="" title="License">License</A>
				</TD>
				
				<TD align="right" valign="middle" class="topBarDiv" align="left" nowrap="true">
				<A href="http://mail-archives.apache.org/mod_mbox/tuscany-user">User List</A> | <A href="http://mail-archives.apache.org/mod_mbox/tuscany-dev">Dev List</A> | <A href="http://issues.apache.org/jira/browse/Tuscany">Issue Tracker</A>&nbsp;&nbsp;
				</TD>
			</TR>
		</TABLE>
		<!-- breadCrumbs macro end -->


        <TABLE border="0" cellpadding="0" width="100%" bgcolor="#FFFFFF">
            <TR>
                <TD align="left" valign="top">

					<!-- pageContent macro -->
					<DIV id="PageContent">
												
						<DIV class="pagecontent">
							<DIV class="wiki-content">
								<TABLE class="sectionMacro" border="0" cellpadding="5" cellspacing="0" width="100%"><TBODY><TR><TD class="confluenceTd" valign="top" width="15%"><P></P>
<DIV class="panel" style="background-color: #ECF4D1;border-color: #C3CDA1;border-style: solid;border-width: 1px;"><DIV class="panelHeader" style="border-bottom-width: 1px;border-bottom-style: solid;border-bottom-color: #C3CDA1;background-color: #C3CDA1;"><B>General</B></DIV><DIV class="panelContent" style="background-color: #ECF4D1;">
<P><A href="home.html" title="Home">Home</A><BR>
<A href="http://www.apache.org/licenses/LICENSE-2.0.html" class="external-link" rel="nofollow">License </A><BR>
<A href="tuscany-downloads-documentations.html" title="Tuscany Downloads & Documentations">Downloads</A><BR>
<A href="tuscany-downloads-documentations.html" title="Tuscany Downloads & Documentations">Documentation</A><BR>
<A href="tuscany-books-and-articles.html" title="Tuscany Books and Articles">Books and Articles</A><BR>
<A href="tuscany-dashboard.html" title="Tuscany Dashboard">Dashboard</A><BR>
<A href="issue-tracking.html" title="Issue Tracking">Found a Bug?</A><BR>
<A href="http://www.apache.org/foundation/sponsorship.html" class="external-link" rel="nofollow">Sponsorship </A><BR>
<A href="http://www.apache.org/foundation/thanks.html" class="external-link" rel="nofollow">Thanks </A><BR>
<A href="privacy-policy.html" title="Privacy Policy">Privacy Policy</A></P>
</DIV></DIV>
<DIV class="panel" style="background-color: #ECF4D1;border-color: #b4b4b5;border-style: solid;border-width: 1px;"><DIV class="panelHeader" style="border-bottom-width: 1px;border-bottom-style: solid;border-bottom-color: #b4b4b5;background-color: #C3CDA1;"><B>Community</B></DIV><DIV class="panelContent" style="background-color: #ECF4D1;">
<P><A href="getting-involved.html" title="Getting Involved">Get Involved</A><BR>
<A href="mailing-lists.html" title="Mailing Lists">Mailing Lists</A><BR>
<A href="committers.html" title="Committers">Committers</A><BR>
<A href="chinese-portal.html" title="Chinese Portal">Chinese Portal </A> <SPAN class="image-wrap" style=""><IMG src="community.data/chinese.jpg" style="border: 0px solid black"></SPAN><BR>
<A href="projects-using-tuscany.html" title="Projects Using Tuscany">Powered By</A></P>
</DIV></DIV>
<DIV class="panel" style="background-color: #ECF4D1;border-color: #b4b4b5;border-style: solid;border-width: 1px;"><DIV class="panelHeader" style="border-bottom-width: 1px;border-bottom-style: solid;border-bottom-color: #b4b4b5;background-color: #C3CDA1;"><B>Tuscany SCA</B></DIV><DIV class="panelContent" style="background-color: #ECF4D1;">
<P><A href="sca-overview.html" title="SCA Overview">SCA Overview</A><BR>
<A href="sca-java.html" title="SCA Java">SCA Java</A><BR>
<A href="sca-native.html" title="SCA Native">SCA Native</A><BR>
<A href="php-sca.html" title="PHP SCA">SCA PHP</A></P>
</DIV></DIV>


<DIV class="panel" style="background-color: #ECF4D1;border-color: #b4b4b5;border-style: solid;border-width: 1px;"><DIV class="panelHeader" style="border-bottom-width: 1px;border-bottom-style: solid;border-bottom-color: #b4b4b5;background-color: #C3CDA1;"><B>Tuscany SDO</B></DIV><DIV class="panelContent" style="background-color: #ECF4D1;">
<P><A href="sdo-overview.html" title="SDO Overview">SDO Overview</A><BR>
<A href="sdo-java.html" title="SDO Java">SDO Java</A><BR>
<A href="sdo-cpp.html" title="SDO CPP">SDO C+&#43;</A><BR>
<A href="sdo-php.html" title="SDO PHP">SDO PHP</A></P>
</DIV></DIV>
<DIV class="panel" style="background-color: #ECF4D1;border-color: #b4b4b5;border-style: solid;border-width: 1px;"><DIV class="panelHeader" style="border-bottom-width: 1px;border-bottom-style: solid;border-bottom-color: #b4b4b5;background-color: #C3CDA1;"><B>Tuscany DAS</B></DIV><DIV class="panelContent" style="background-color: #ECF4D1;">
<P><A href="das-overview.html" title="DAS Overview">DAS Overview </A><BR>
<A href="das-java.html" title="DAS Java">DAS Java</A><BR>
<A href="das-c.html" title="DAS C++">DAS C++ </A></P>
</DIV></DIV></TD><TD class="confluenceTd" valign="top" width="85%">


<P>                                 Apache License<BR>
                           Version 2.0, January 2004<BR>
                        <A href="http://www.apache.org/licenses/" class="external-link" rel="nofollow">http://www.apache.org/licenses/</A></P>

<P>   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION</P>

<P>   1. Definitions.</P>

<P>      &quot;License&quot; shall mean the terms and conditions for use, reproduction,<BR>
      and distribution as defined by Sections 1 through 9 of this document.</P>

<P>      &quot;Licensor&quot; shall mean the copyright owner or entity authorized by<BR>
      the copyright owner that is granting the License.</P>

<P>      &quot;Legal Entity&quot; shall mean the union of the acting entity and all<BR>
      other entities that control, are controlled by, or are under common<BR>
      control with that entity. For the purposes of this definition,<BR>
      &quot;control&quot; means <IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/information.gif" height="16" width="16" align="absmiddle" alt="" border="0"> the power, direct or indirect, to cause the<BR>
      direction or management of such entity, whether by contract or<BR>
      otherwise, or (ii) ownership of fifty percent (50%) or more of the<BR>
      outstanding shares, or (iii) beneficial ownership of such entity.</P>

<P>      &quot;You&quot; (or &quot;Your&quot;) shall mean an individual or Legal Entity<BR>
      exercising permissions granted by this License.</P>

<P>      &quot;Source&quot; form shall mean the preferred form for making modifications,<BR>
      including but not limited to software source code, documentation<BR>
      source, and configuration files.</P>

<P>      &quot;Object&quot; form shall mean any form resulting from mechanical<BR>
      transformation or translation of a Source form, including but<BR>
      not limited to compiled object code, generated documentation,<BR>
      and conversions to other media types.</P>

<P>      &quot;Work&quot; shall mean the work of authorship, whether in Source or<BR>
      Object form, made available under the License, as indicated by a<BR>
      copyright notice that is included in or attached to the work<BR>
      (an example is provided in the Appendix below).</P>

<P>      &quot;Derivative Works&quot; shall mean any work, whether in Source or Object<BR>
      form, that is based on (or derived from) the Work and for which the<BR>
      editorial revisions, annotations, elaborations, or other modifications<BR>
      represent, as a whole, an original work of authorship. For the purposes<BR>
      of this License, Derivative Works shall not include works that remain<BR>
      separable from, or merely link (or bind by name) to the interfaces of,<BR>
      the Work and Derivative Works thereof.</P>

<P>      &quot;Contribution&quot; shall mean any work of authorship, including<BR>
      the original version of the Work and any modifications or additions<BR>
      to that Work or Derivative Works thereof, that is intentionally<BR>
      submitted to Licensor for inclusion in the Work by the copyright owner<BR>
      or by an individual or Legal Entity authorized to submit on behalf of<BR>
      the copyright owner. For the purposes of this definition, &quot;submitted&quot;<BR>
      means any form of electronic, verbal, or written communication sent<BR>
      to the Licensor or its representatives, including but not limited to<BR>
      communication on electronic mailing lists, source code control systems,<BR>
      and issue tracking systems that are managed by, or on behalf of, the<BR>
      Licensor for the purpose of discussing and improving the Work, but<BR>
      excluding communication that is conspicuously marked or otherwise<BR>
      designated in writing by the copyright owner as &quot;Not a Contribution.&quot;</P>

<P>      &quot;Contributor&quot; shall mean Licensor and any individual or Legal Entity<BR>
      on behalf of whom a Contribution has been received by Licensor and<BR>
      subsequently incorporated within the Work.</P>

<P>   2. Grant of Copyright License. Subject to the terms and conditions of<BR>
      this License, each Contributor hereby grants to You a perpetual,<BR>
      worldwide, non-exclusive, no-charge, royalty-free, irrevocable<BR>
      copyright license to reproduce, prepare Derivative Works of,<BR>
      publicly display, publicly perform, sublicense, and distribute the<BR>
      Work and such Derivative Works in Source or Object form.</P>

<P>   3. Grant of Patent License. Subject to the terms and conditions of<BR>
      this License, each Contributor hereby grants to You a perpetual,<BR>
      worldwide, non-exclusive, no-charge, royalty-free, irrevocable<BR>
      (except as stated in this section) patent license to make, have made,<BR>
      use, offer to sell, sell, import, and otherwise transfer the Work,<BR>
      where such license applies only to those patent claims licensable<BR>
      by such Contributor that are necessarily infringed by their<BR>
      Contribution(s) alone or by combination of their Contribution(s)<BR>
      with the Work to which such Contribution(s) was submitted. If You<BR>
      institute patent litigation against any entity (including a<BR>
      cross-claim or counterclaim in a lawsuit) alleging that the Work<BR>
      or a Contribution incorporated within the Work constitutes direct<BR>
      or contributory patent infringement, then any patent licenses<BR>
      granted to You under this License for that Work shall terminate<BR>
      as of the date such litigation is filed.</P>

<P>   4. Redistribution. You may reproduce and distribute copies of the<BR>
      Work or Derivative Works thereof in any medium, with or without<BR>
      modifications, and in Source or Object form, provided that You<BR>
      meet the following conditions:</P>

<P>      (a) You must give any other recipients of the Work or<BR>
          Derivative Works a copy of this License; and</P>

<P>      (b) You must cause any modified files to carry prominent notices<BR>
          stating that You changed the files; and</P>

<P>      (c) You must retain, in the Source form of any Derivative Works<BR>
          that You distribute, all copyright, patent, trademark, and<BR>
          attribution notices from the Source form of the Work,<BR>
          excluding those notices that do not pertain to any part of<BR>
          the Derivative Works; and</P>

<P>      (d) If the Work includes a &quot;NOTICE&quot; text file as part of its<BR>
          distribution, then any Derivative Works that You distribute must<BR>
          include a readable copy of the attribution notices contained<BR>
          within such NOTICE file, excluding those notices that do not<BR>
          pertain to any part of the Derivative Works, in at least one<BR>
          of the following places: within a NOTICE text file distributed<BR>
          as part of the Derivative Works; within the Source form or<BR>
          documentation, if provided along with the Derivative Works; or,<BR>
          within a display generated by the Derivative Works, if and<BR>
          wherever such third-party notices normally appear. The contents<BR>
          of the NOTICE file are for informational purposes only and<BR>
          do not modify the License. You may add Your own attribution<BR>
          notices within Derivative Works that You distribute, alongside<BR>
          or as an addendum to the NOTICE text from the Work, provided<BR>
          that such additional attribution notices cannot be construed<BR>
          as modifying the License.</P>

<P>      You may add Your own copyright statement to Your modifications and<BR>
      may provide additional or different license terms and conditions<BR>
      for use, reproduction, or distribution of Your modifications, or<BR>
      for any such Derivative Works as a whole, provided Your use,<BR>
      reproduction, and distribution of the Work otherwise complies with<BR>
      the conditions stated in this License.</P>

<P>   5. Submission of Contributions. Unless You explicitly state otherwise,<BR>
      any Contribution intentionally submitted for inclusion in the Work<BR>
      by You to the Licensor shall be under the terms and conditions of<BR>
      this License, without any additional terms or conditions.<BR>
      Notwithstanding the above, nothing herein shall supersede or modify<BR>
      the terms of any separate license agreement you may have executed<BR>
      with Licensor regarding such Contributions.</P>

<P>   6. Trademarks. This License does not grant permission to use the trade<BR>
      names, trademarks, service marks, or product names of the Licensor,<BR>
      except as required for reasonable and customary use in describing the<BR>
      origin of the Work and reproducing the content of the NOTICE file.</P>

<P>   7. Disclaimer of Warranty. Unless required by applicable law or<BR>
      agreed to in writing, Licensor provides the Work (and each<BR>
      Contributor provides its Contributions) on an &quot;AS IS&quot; BASIS,<BR>
      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or<BR>
      implied, including, without limitation, any warranties or conditions<BR>
      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A<BR>
      PARTICULAR PURPOSE. You are solely responsible for determining the<BR>
      appropriateness of using or redistributing the Work and assume any<BR>
      risks associated with Your exercise of permissions under this License.</P>

<P>   8. Limitation of Liability. In no event and under no legal theory,<BR>
      whether in tort (including negligence), contract, or otherwise,<BR>
      unless required by applicable law (such as deliberate and grossly<BR>
      negligent acts) or agreed to in writing, shall any Contributor be<BR>
      liable to You for damages, including any direct, indirect, special,<BR>
      incidental, or consequential damages of any character arising as a<BR>
      result of this License or out of the use or inability to use the<BR>
      Work (including but not limited to damages for loss of goodwill,<BR>
      work stoppage, computer failure or malfunction, or any and all<BR>
      other commercial damages or losses), even if such Contributor<BR>
      has been advised of the possibility of such damages.</P>

<P>   9. Accepting Warranty or Additional Liability. While redistributing<BR>
      the Work or Derivative Works thereof, You may choose to offer,<BR>
      and charge a fee for, acceptance of support, warranty, indemnity,<BR>
      or other liability obligations and/or rights consistent with this<BR>
      License. However, in accepting such obligations, You may act only<BR>
      on Your own behalf and on Your sole responsibility, not on behalf<BR>
      of any other Contributor, and only if You agree to indemnify,<BR>
      defend, and hold each Contributor harmless for any liability<BR>
      incurred by, or claims asserted against, such Contributor by reason<BR>
      of your accepting any such warranty or additional liability.</P>

<P>   END OF TERMS AND CONDITIONS</P>

<P>   APPENDIX: How to apply the Apache License to your work.</P>

<P>      To apply the Apache License to your work, attach the following<BR>
      boilerplate notice, with the fields enclosed by brackets &quot;[]&quot;<BR>
      replaced with your own identifying information. (Don't include<BR>
      the brackets!)  The text should be enclosed in the appropriate<BR>
      comment syntax for the file format. We also recommend that a<BR>
      file or class name and description of purpose be included on the<BR>
      same &quot;printed page&quot; as the copyright notice for easier<BR>
      identification within third-party archives.</P>

<P>   Copyright <A href="https://cwiki.apache.org/confluence/pages/createpage.action?spaceKey=TUSCANY&title=yyyy&linkCreation=true&fromPageId=47503" class="createlink">yyyy</A> <A href="https://cwiki.apache.org/confluence/pages/createpage.action?spaceKey=TUSCANY&title=name%20of%20copyright%20owner&linkCreation=true&fromPageId=47503" class="createlink">name of copyright owner</A></P>

<P>   Licensed under the Apache License, Version 2.0 (the &quot;License&quot;);<BR>
   you may not use this file except in compliance with the License.<BR>
   You may obtain a copy of the License at</P>

<P>       <A href="http://www.apache.org/licenses/LICENSE-2.0" class="external-link" rel="nofollow">http://www.apache.org/licenses/LICENSE-2.0</A></P>

<P>   Unless required by applicable law or agreed to in writing, software<BR>
   distributed under the License is distributed on an &quot;AS IS&quot; BASIS,<BR>
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.<BR>
   See the License for the specific language governing permissions and<BR>
   limitations under the License.</P>


<P>APACHE TUSCANY SUBCOMPONENTS: </P>

<P>The Apache Tuscany distribution includes a number of subcomponents with<BR>
separate copyright notices and license terms. Your use of the source<BR>
code for the these subcomponents is subject to the terms and<BR>
conditions of the following licenses. </P>

<P>===============================================================================</P>

<P>For the Eclipse Modeling Framework component and the Celtix binding:</P>

<P>Eclipse Public License - v 1.0</P>

<P>THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE<BR>
PUBLIC LICENSE (&quot;AGREEMENT&quot;). ANY USE, REPRODUCTION OR DISTRIBUTION OF<BR>
THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT.</P>

<P>1. DEFINITIONS</P>

<P>&quot;Contribution&quot; means:</P>

<P>a) in the case of the initial Contributor, the initial code and<BR>
documentation distributed under this Agreement, and<BR>
b) in the case of each subsequent Contributor:</P>

<P>i) changes to the Program, and</P>

<P>ii) additions to the Program;</P>

<P>where such changes and/or additions to the Program originate from and<BR>
are distributed by that particular Contributor. A Contribution<BR>
'originates' from a Contributor if it was added to the Program by such<BR>
Contributor itself or anyone acting on such Contributor's behalf.<BR>
Contributions do not include additions to the Program which: <IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/information.gif" height="16" width="16" align="absmiddle" alt="" border="0"> are<BR>
separate modules of software distributed in conjunction with the<BR>
Program under their own license agreement, and (ii) are not derivative<BR>
works of the Program.</P>

<P>&quot;Contributor&quot; means any person or entity that distributes the Program.</P>

<P>&quot;Licensed Patents &quot; mean patent claims licensable by a Contributor<BR>
which are necessarily infringed by the use or sale of its Contribution<BR>
alone or when combined with the Program.</P>

<P>&quot;Program&quot; means the Contributions distributed in accordance with this <BR>
Agreement.</P>

<P>&quot;Recipient&quot; means anyone who receives the Program under this<BR>
Agreement, including all Contributors.</P>

<P>2. GRANT OF RIGHTS</P>

<P>a) Subject to the terms of this Agreement, each Contributor hereby<BR>
grants Recipient a non-exclusive, worldwide, royalty-free copyright<BR>
license to reproduce, prepare derivative works of, publicly display,<BR>
publicly perform, distribute and sublicense the Contribution of such<BR>
Contributor, if any, and such derivative works, in source code and<BR>
object code form.</P>

<P>b) Subject to the terms of this Agreement, each Contributor hereby<BR>
grants Recipient a non-exclusive, worldwide, royalty-free patent<BR>
license under Licensed Patents to make, use, sell, offer to sell,<BR>
import and otherwise transfer the Contribution of such Contributor, if<BR>
any, in source code and object code form. This patent license shall<BR>
apply to the combination of the Contribution and the Program if, at<BR>
the time the Contribution is added by the Contributor, such addition<BR>
of the Contribution causes such combination to be covered by the<BR>
Licensed Patents. The patent license shall not apply to any other<BR>
combinations which include the Contribution. No hardware per se is<BR>
licensed hereunder.</P>

<P>c) Recipient understands that although each Contributor grants the<BR>
licenses to its Contributions set forth herein, no assurances are<BR>
provided by any Contributor that the Program does not infringe the<BR>
patent or other intellectual property rights of any other entity. Each<BR>
Contributor disclaims any liability to Recipient for claims brought by<BR>
any other entity based on infringement of intellectual property rights<BR>
or otherwise. As a condition to exercising the rights and licenses<BR>
granted hereunder, each Recipient hereby assumes sole responsibility<BR>
to secure any other intellectual property rights needed, if any. For<BR>
example, if a third party patent license is required to allow<BR>
Recipient to distribute the Program, it is Recipient's responsibility<BR>
to acquire that license before distributing the Program.</P>

<P>d) Each Contributor represents that to its knowledge it has sufficient<BR>
copyright rights in its Contribution, if any, to grant the copyright<BR>
license set forth in this Agreement.</P>

<P>3. REQUIREMENTS</P>

<P>A Contributor may choose to distribute the Program in object code form<BR>
under its own license agreement, provided that:</P>

<P>a) it complies with the terms and conditions of this Agreement; and</P>

<P>b) its license agreement:</P>

<P>i) effectively disclaims on behalf of all Contributors all warranties<BR>
and conditions, express and implied, including warranties or<BR>
conditions of title and non-infringement, and implied warranties or<BR>
conditions of merchantability and fitness for a particular purpose;</P>

<P>ii) effectively excludes on behalf of all Contributors all liability<BR>
for damages, including direct, indirect, special, incidental and<BR>
consequential damages, such as lost profits;</P>

<P>iii) states that any provisions which differ from this Agreement are<BR>
offered by that Contributor alone and not by any other party; and</P>

<P>iv) states that source code for the Program is available from such<BR>
Contributor, and informs licensees how to obtain it in a reasonable<BR>
manner on or through a medium customarily used for software exchange.</P>

<P>When the Program is made available in source code form:</P>

<P>a) it must be made available under this Agreement; and</P>

<P>b) a copy of this Agreement must be included with each copy of the <BR>
Program.</P>

<P>Contributors may not remove or alter any copyright notices contained<BR>
within the Program.</P>

<P>Each Contributor must identify itself as the originator of its<BR>
Contribution, if any, in a manner that reasonably allows subsequent<BR>
Recipients to identify the originator of the Contribution.</P>

<P>4. COMMERCIAL DISTRIBUTION</P>

<P>Commercial distributors of software may accept certain<BR>
responsibilities with respect to end users, business partners and the<BR>
like. While this license is intended to facilitate the commercial use<BR>
of the Program, the Contributor who includes the Program in a<BR>
commercial product offering should do so in a manner which does not<BR>
create potential liability for other Contributors. Therefore, if a<BR>
Contributor includes the Program in a commercial product offering,<BR>
such Contributor (&quot;Commercial Contributor&quot;) hereby agrees to defend<BR>
and indemnify every other Contributor (&quot;Indemnified Contributor&quot;)<BR>
against any losses, damages and costs (collectively &quot;Losses&quot;) arising<BR>
from claims, lawsuits and other legal actions brought by a third party<BR>
against the Indemnified Contributor to the extent caused by the acts<BR>
or omissions of such Commercial Contributor in connection with its<BR>
distribution of the Program in a commercial product offering. The<BR>
obligations in this section do not apply to any claims or Losses<BR>
relating to any actual or alleged intellectual property infringement.<BR>
In order to qualify, an Indemnified Contributor must: a) promptly<BR>
notify the Commercial Contributor in writing of such claim, and b)<BR>
allow the Commercial Contributor to control, and cooperate with the<BR>
Commercial Contributor in, the defense and any related settlement<BR>
negotiations. The Indemnified Contributor may participate in any such<BR>
claim at its own expense.</P>

<P>For example, a Contributor might include the Program in a commercial<BR>
product offering, Product X. That Contributor is then a Commercial<BR>
Contributor. If that Commercial Contributor then makes performance<BR>
claims, or offers warranties related to Product X, those performance<BR>
claims and warranties are such Commercial Contributor's responsibility<BR>
alone. Under this section, the Commercial Contributor would have to<BR>
defend claims against the other Contributors related to those<BR>
performance claims and warranties, and if a court requires any other<BR>
Contributor to pay any damages as a result, the Commercial Contributor<BR>
must pay those damages.</P>

<P>5. NO WARRANTY</P>

<P>EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS<BR>
PROVIDED ON AN &quot;AS IS&quot; BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY<BR>
KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION, ANY<BR>
WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY<BR>
OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely<BR>
responsible for determining the appropriateness of using and<BR>
distributing the Program and assumes all risks associated with its<BR>
exercise of rights under this Agreement , including but not limited to<BR>
the risks and costs of program errors, compliance with applicable<BR>
laws, damage to or loss of data, programs or equipment, and<BR>
unavailability or interruption of operations.</P>

<P>6. DISCLAIMER OF LIABILITY</P>

<P>EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR<BR>
ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT,<BR>
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING<BR>
WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF<BR>
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING<BR>
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OR<BR>
DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED<BR>
HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.</P>

<P>7. GENERAL</P>

<P>If any provision of this Agreement is invalid or unenforceable under<BR>
applicable law, it shall not affect the validity or enforceability of<BR>
the remainder of the terms of this Agreement, and without further<BR>
action by the parties hereto, such provision shall be reformed to the<BR>
minimum extent necessary to make such provision valid and enforceable.</P>

<P>If Recipient institutes patent litigation against any entity<BR>
(including a cross-claim or counterclaim in a lawsuit) alleging that<BR>
the Program itself (excluding combinations of the Program with other<BR>
software or hardware) infringes such Recipient's patent(s), then such<BR>
Recipient's rights granted under Section 2(b) shall terminate as of<BR>
the date such litigation is filed.</P>

<P>All Recipient's rights under this Agreement shall terminate if it<BR>
fails to comply with any of the material terms or conditions of this<BR>
Agreement and does not cure such failure in a reasonable period of<BR>
time after becoming aware of such noncompliance. If all Recipient's<BR>
rights under this Agreement terminate, Recipient agrees to cease use<BR>
and distribution of the Program as soon as reasonably practicable.<BR>
However, Recipient's obligations under this Agreement and any licenses<BR>
granted by Recipient relating to the Program shall continue and<BR>
survive.</P>

<P>Everyone is permitted to copy and distribute copies of this Agreement,<BR>
but in order to avoid inconsistency the Agreement is copyrighted and<BR>
may only be modified in the following manner. The Agreement Steward<BR>
reserves the right to publish new versions (including revisions) of<BR>
this Agreement from time to time. No one other than the Agreement<BR>
Steward has the right to modify this Agreement. The Eclipse Foundation<BR>
is the initial Agreement Steward. The Eclipse Foundation may assign<BR>
the responsibility to serve as the Agreement Steward to a suitable<BR>
separate entity. Each new version of the Agreement will be given a<BR>
distinguishing version number. The Program (including Contributions)<BR>
may always be distributed subject to the version of the Agreement<BR>
under which it was received. In addition, after a new version of the<BR>
Agreement is published, Contributor may elect to distribute the<BR>
Program (including its Contributions) under the new version. Except as<BR>
expressly stated in Sections 2(a) and 2(b) above, Recipient receives<BR>
no rights or licenses to the intellectual property of any Contributor<BR>
under this Agreement, whether expressly, by implication, estoppel or<BR>
otherwise. All rights in the Program not expressly granted under this<BR>
Agreement are reserved.</P>

<P>This Agreement is governed by the laws of the State of New York and<BR>
the intellectual property laws of the United States of America. No<BR>
party to this Agreement will bring a legal action under this Agreement<BR>
more than one year after the cause of action arose. Each party waives<BR>
its rights to a jury trial in any resulting litigation.</P>

<P>===============================================================================</P>

<P>For the Rhino JavaScript container component:</P>

<P>Netscape Public License V1.1</P>

<P>     AMENDMENTS</P>

<P>     The Netscape Public License Version 1.1 (&quot;NPL&quot;) consists of the<BR>
     Mozilla Public License Version 1.1 with the following Amendments,<BR>
     including Exhibit A-Netscape Public License.  Files identified with<BR>
     &quot;Exhibit A-Netscape Public License&quot; are governed by the Netscape<BR>
     Public License Version 1.1.</P>

<P>     Additional Terms applicable to the Netscape Public License.<BR>
          I. Effect.<BR>
          These additional terms described in this Netscape Public<BR>
          License &ndash; Amendments shall apply to the Mozilla Communicator<BR>
          client code and to all Covered Code under this License.</P>

<P>          II. &quot;Netscape's Branded Code&quot; means Covered Code that Netscape<BR>
          distributes and/or permits others to distribute under one or more<BR>
          trademark(s) which are controlled by Netscape but which are not<BR>
          licensed for use under this License.</P>

<P>          III. Netscape and logo.<BR>
          This License does not grant any rights to use the trademarks<BR>
          &quot;Netscape&quot;, the &quot;Netscape N and horizon&quot; logo or the &quot;Netscape<BR>
          lighthouse&quot; logo, &quot;Netcenter&quot;, &quot;Gecko&quot;, &quot;Java&quot; or &quot;JavaScript&quot;,<BR>
          &quot;Smart Browsing&quot; even if such marks are included in the Original<BR>
          Code or Modifications.</P>

<P>          IV. Inability to Comply Due to Contractual Obligation.<BR>
          Prior to licensing the Original Code under this License, Netscape<BR>
          has licensed third party code for use in Netscape's Branded Code.<BR>
          To the extent that Netscape is limited contractually from making<BR>
          such third party code available under this License, Netscape may<BR>
          choose to reintegrate such code into Covered Code without being<BR>
          required to distribute such code in Source Code form, even if<BR>
          such code would otherwise be considered &quot;Modifications&quot; under<BR>
          this License.</P>

<P>          V. Use of Modifications and Covered Code by Initial Developer.<BR>
               V.1. In General.<BR>
               The obligations of Section 3 apply to Netscape, except to<BR>
               the extent specified in this Amendment, Section V.2 and V.3.</P>

<P>               V.2. Other Products.<BR>
               Netscape may include Covered Code in products other than the<BR>
               Netscape's Branded Code which are released by Netscape<BR>
               during the two (2) years following the release date of the<BR>
               Original Code, without such additional products becoming<BR>
               subject to the terms of this License, and may license such<BR>
               additional products on different terms from those contained<BR>
               in this License.</P>

<P>               V.3. Alternative Licensing.<BR>
               Netscape may license the Source Code of Netscape's Branded<BR>
               Code, including Modifications incorporated therein, without<BR>
               such Netscape Branded Code becoming subject to the terms of<BR>
               this License, and may license such Netscape Branded Code on<BR>
               different terms from those contained in this License.</P>

<P>          VI. Litigation.<BR>
          Notwithstanding the limitations of Section 11 above, the<BR>
          provisions regarding litigation in Section 11(a), (b) and (c) of<BR>
          the License shall apply to all disputes relating to this License.</P>

<P>     EXHIBIT A-Netscape Public License.</P>

<P>          &quot;The contents of this file are subject to the Netscape Public<BR>
          License Version 1.1 (the &quot;License&quot;); you may not use this file<BR>
          except in compliance with the License. You may obtain a copy of<BR>
          the License at <A href="http://www.mozilla.org/NPL/" class="external-link" rel="nofollow">http://www.mozilla.org/NPL/</A></P>

<P>          Software distributed under the License is distributed on an &quot;AS<BR>
          IS&quot; basis, WITHOUT WARRANTY OF ANY KIND, either express or<BR>
          implied. See the License for the specific language governing<BR>
          rights and limitations under the License.</P>

<P>          The Original Code is Mozilla Communicator client code, released<BR>
          March 31, 1998.</P>

<P>          The Initial Developer of the Original Code is Netscape<BR>
          Communications Corporation. Portions created by Netscape are<BR>
          Copyright (C) 1998-1999 Netscape Communications Corporation. All<BR>
          Rights Reserved.</P>

<P>          Contributor(s): ______________________________________.</P>

<P>          Alternatively, the contents of this file may be used under the<BR>
          terms of the _____ license (the &quot;<A href="https://cwiki.apache.org/confluence/pages/createpage.action?spaceKey=TUSCANY&title=___&linkCreation=true&fromPageId=47503" class="createlink">&#95;&#95;&#95;</A> License&quot;), in which case<BR>
          the provisions of <A href="https://cwiki.apache.org/confluence/pages/createpage.action?spaceKey=TUSCANY&title=______&linkCreation=true&fromPageId=47503" class="createlink">&#95;&#95;&#95;&#95;&#95;&#95;</A> License are applicable  instead of<BR>
          those above.  If you wish to allow use of your version of this<BR>
          file only under the terms of the <A href="https://cwiki.apache.org/confluence/pages/createpage.action?spaceKey=TUSCANY&title=____&linkCreation=true&fromPageId=47503" class="createlink">&#95;&#95;&#95;&#95;</A> License and not to allow<BR>
          others to use your version of this file under the NPL, indicate<BR>
          your decision by deleting  the provisions above and replace  them<BR>
          with the notice and other provisions required by the <A href="https://cwiki.apache.org/confluence/pages/createpage.action?spaceKey=TUSCANY&title=___&linkCreation=true&fromPageId=47503" class="createlink">&#95;&#95;&#95;</A><BR>
          License.  If you do not delete the provisions above, a recipient<BR>
          may use your version of this file under either the NPL or the<BR>
          <A href="https://cwiki.apache.org/confluence/pages/createpage.action?spaceKey=TUSCANY&title=___&linkCreation=true&fromPageId=47503" class="createlink">&#95;&#95;&#95;</A> License.&quot;</P>

<P>     ----------------------------------------------------------------------</P>

<P>                          MOZILLA PUBLIC LICENSE<BR>
                                Version 1.1</P>

<P>                              ---------------</P>

<P>1. Definitions.</P>

<P>     1.0.1. &quot;Commercial Use&quot; means distribution or otherwise making the<BR>
     Covered Code available to a third party.</P>

<P>     1.1. &quot;Contributor&quot; means each entity that creates or contributes to<BR>
     the creation of Modifications.</P>

<P>     1.2. &quot;Contributor Version&quot; means the combination of the Original<BR>
     Code, prior Modifications used by a Contributor, and the Modifications<BR>
     made by that particular Contributor.</P>

<P>     1.3. &quot;Covered Code&quot; means the Original Code or Modifications or the<BR>
     combination of the Original Code and Modifications, in each case<BR>
     including portions thereof.</P>

<P>     1.4. &quot;Electronic Distribution Mechanism&quot; means a mechanism generally<BR>
     accepted in the software development community for the electronic<BR>
     transfer of data.</P>

<P>     1.5. &quot;Executable&quot; means Covered Code in any form other than Source<BR>
     Code.</P>

<P>     1.6. &quot;Initial Developer&quot; means the individual or entity identified<BR>
     as the Initial Developer in the Source Code notice required by Exhibit<BR>
     A.</P>

<P>     1.7. &quot;Larger Work&quot; means a work which combines Covered Code or<BR>
     portions thereof with code not governed by the terms of this License.</P>

<P>     1.8. &quot;License&quot; means this document.</P>

<P>     1.8.1. &quot;Licensable&quot; means having the right to grant, to the maximum<BR>
     extent possible, whether at the time of the initial grant or<BR>
     subsequently acquired, any and all of the rights conveyed herein.</P>

<P>     1.9. &quot;Modifications&quot; means any addition to or deletion from the<BR>
     substance or structure of either the Original Code or any previous<BR>
     Modifications. When Covered Code is released as a series of files, a<BR>
     Modification is:<BR>
          A. Any addition to or deletion from the contents of a file<BR>
          containing Original Code or previous Modifications.</P>

<P>          B. Any new file that contains any part of the Original Code or<BR>
          previous Modifications.</P>

<P>     1.10. &quot;Original Code&quot; means Source Code of computer software code<BR>
     which is described in the Source Code notice required by Exhibit A as<BR>
     Original Code, and which, at the time of its release under this<BR>
     License is not already Covered Code governed by this License.</P>

<P>     1.10.1. &quot;Patent Claims&quot; means any patent claim(s), now owned or<BR>
     hereafter acquired, including without limitation,  method, process,<BR>
     and apparatus claims, in any patent Licensable by grantor.</P>

<P>     1.11. &quot;Source Code&quot; means the preferred form of the Covered Code for<BR>
     making modifications to it, including all modules it contains, plus<BR>
     any associated interface definition files, scripts used to control<BR>
     compilation and installation of an Executable, or source code<BR>
     differential comparisons against either the Original Code or another<BR>
     well known, available Covered Code of the Contributor's choice. The<BR>
     Source Code can be in a compressed or archival form, provided the<BR>
     appropriate decompression or de-archiving software is widely available<BR>
     for no charge.</P>

<P>     1.12. &quot;You&quot; (or &quot;Your&quot;)  means an individual or a legal entity<BR>
     exercising rights under, and complying with all of the terms of, this<BR>
     License or a future version of this License issued under Section 6.1.<BR>
     For legal entities, &quot;You&quot; includes any entity which controls, is<BR>
     controlled by, or is under common control with You. For purposes of<BR>
     this definition, &quot;control&quot; means (a) the power, direct or indirect,<BR>
     to cause the direction or management of such entity, whether by<BR>
     contract or otherwise, or (b) ownership of more than fifty percent<BR>
     (50%) of the outstanding shares or beneficial ownership of such<BR>
     entity.</P>

<P>2. Source Code License.</P>

<P>     2.1. The Initial Developer Grant.<BR>
     The Initial Developer hereby grants You a world-wide, royalty-free,<BR>
     non-exclusive license, subject to third party intellectual property<BR>
     claims:<BR>
          (a)  under intellectual property rights (other than patent or<BR>
          trademark) Licensable by Initial Developer to use, reproduce,<BR>
          modify, display, perform, sublicense and distribute the Original<BR>
          Code (or portions thereof) with or without Modifications, and/or<BR>
          as part of a Larger Work; and</P>

<P>          (b) under Patents Claims infringed by the making, using or<BR>
          selling of Original Code, to make, have made, use, practice,<BR>
          sell, and offer for sale, and/or otherwise dispose of the<BR>
          Original Code (or portions thereof).</P>

<P>          (c) the licenses granted in this Section 2.1(a) and (b) are<BR>
          effective on the date Initial Developer first distributes<BR>
          Original Code under the terms of this License.</P>

<P>          (d) Notwithstanding Section 2.1(b) above, no patent license is<BR>
          granted: 1) for code that You delete from the Original Code; 2)<BR>
          separate from the Original Code;  or 3) for infringements caused<BR>
          by: i) the modification of the Original Code or ii) the<BR>
          combination of the Original Code with other software or devices.</P>

<P>     2.2. Contributor Grant.<BR>
     Subject to third party intellectual property claims, each Contributor<BR>
     hereby grants You a world-wide, royalty-free, non-exclusive license</P>

<P>          (a)  under intellectual property rights (other than patent or<BR>
          trademark) Licensable by Contributor, to use, reproduce, modify,<BR>
          display, perform, sublicense and distribute the Modifications<BR>
          created by such Contributor (or portions thereof) either on an<BR>
          unmodified basis, with other Modifications, as Covered Code<BR>
          and/or as part of a Larger Work; and</P>

<P>          (b) under Patent Claims infringed by the making, using, or<BR>
          selling of  Modifications made by that Contributor either alone<BR>
          and/or in combination with its Contributor Version (or portions<BR>
          of such combination), to make, use, sell, offer for sale, have<BR>
          made, and/or otherwise dispose of: 1) Modifications made by that<BR>
          Contributor (or portions thereof); and 2) the combination of<BR>
          Modifications made by that Contributor with its Contributor<BR>
          Version (or portions of such combination).</P>

<P>          (c) the licenses granted in Sections 2.2(a) and 2.2(b) are<BR>
          effective on the date Contributor first makes Commercial Use of<BR>
          the Covered Code.</P>

<P>          (d)    Notwithstanding Section 2.2(b) above, no patent license is<BR>
          granted: 1) for any code that Contributor has deleted from the<BR>
          Contributor Version; 2)  separate from the Contributor Version;<BR>
          3)  for infringements caused by: i) third party modifications of<BR>
          Contributor Version or ii)  the combination of Modifications made<BR>
          by that Contributor with other software  (except as part of the<BR>
          Contributor Version) or other devices; or 4) under Patent Claims<BR>
          infringed by Covered Code in the absence of Modifications made by<BR>
          that Contributor.</P>

<P>3. Distribution Obligations.</P>

<P>     3.1. Application of License.<BR>
     The Modifications which You create or to which You contribute are<BR>
     governed by the terms of this License, including without limitation<BR>
     Section 2.2. The Source Code version of Covered Code may be<BR>
     distributed only under the terms of this License or a future version<BR>
     of this License released under Section 6.1, and You must include a<BR>
     copy of this License with every copy of the Source Code You<BR>
     distribute. You may not offer or impose any terms on any Source Code<BR>
     version that alters or restricts the applicable version of this<BR>
     License or the recipients' rights hereunder. However, You may include<BR>
     an additional document offering the additional rights described in<BR>
     Section 3.5.</P>

<P>     3.2. Availability of Source Code.<BR>
     Any Modification which You create or to which You contribute must be<BR>
     made available in Source Code form under the terms of this License<BR>
     either on the same media as an Executable version or via an accepted<BR>
     Electronic Distribution Mechanism to anyone to whom you made an<BR>
     Executable version available; and if made available via Electronic<BR>
     Distribution Mechanism, must remain available for at least twelve (12)<BR>
     months after the date it initially became available, or at least six<BR>
     (6) months after a subsequent version of that particular Modification<BR>
     has been made available to such recipients. You are responsible for<BR>
     ensuring that the Source Code version remains available even if the<BR>
     Electronic Distribution Mechanism is maintained by a third party.</P>

<P>     3.3. Description of Modifications.<BR>
     You must cause all Covered Code to which You contribute to contain a<BR>
     file documenting the changes You made to create that Covered Code and<BR>
     the date of any change. You must include a prominent statement that<BR>
     the Modification is derived, directly or indirectly, from Original<BR>
     Code provided by the Initial Developer and including the name of the<BR>
     Initial Developer in (a) the Source Code, and (b) in any notice in an<BR>
     Executable version or related documentation in which You describe the<BR>
     origin or ownership of the Covered Code.</P>

<P>     3.4. Intellectual Property Matters<BR>
          (a) Third Party Claims.<BR>
          If Contributor has knowledge that a license under a third party's<BR>
          intellectual property rights is required to exercise the rights<BR>
          granted by such Contributor under Sections 2.1 or 2.2,<BR>
          Contributor must include a text file with the Source Code<BR>
          distribution titled &quot;LEGAL&quot; which describes the claim and the<BR>
          party making the claim in sufficient detail that a recipient will<BR>
          know whom to contact. If Contributor obtains such knowledge after<BR>
          the Modification is made available as described in Section 3.2,<BR>
          Contributor shall promptly modify the LEGAL file in all copies<BR>
          Contributor makes available thereafter and shall take other steps<BR>
          (such as notifying appropriate mailing lists or newsgroups)<BR>
          reasonably calculated to inform those who received the Covered<BR>
          Code that new knowledge has been obtained.</P>

<P>          (b) Contributor APIs.<BR>
          If Contributor's Modifications include an application programming<BR>
          interface and Contributor has knowledge of patent licenses which<BR>
          are reasonably necessary to implement that API, Contributor must<BR>
          also include this information in the LEGAL file.</P>

<P>               (c)    Representations.<BR>
          Contributor represents that, except as disclosed pursuant to<BR>
          Section 3.4(a) above, Contributor believes that Contributor's<BR>
          Modifications are Contributor's original creation(s) and/or<BR>
          Contributor has sufficient rights to grant the rights conveyed by<BR>
          this License.</P>

<P>     3.5. Required Notices.<BR>
     You must duplicate the notice in Exhibit A in each file of the Source<BR>
     Code.  If it is not possible to put such notice in a particular Source<BR>
     Code file due to its structure, then You must include such notice in a<BR>
     location (such as a relevant directory) where a user would be likely<BR>
     to look for such a notice.  If You created one or more Modification(s)<BR>
     You may add your name as a Contributor to the notice described in<BR>
     Exhibit A.  You must also duplicate this License in any documentation<BR>
     for the Source Code where You describe recipients' rights or ownership<BR>
     rights relating to Covered Code.  You may choose to offer, and to<BR>
     charge a fee for, warranty, support, indemnity or liability<BR>
     obligations to one or more recipients of Covered Code. However, You<BR>
     may do so only on Your own behalf, and not on behalf of the Initial<BR>
     Developer or any Contributor. You must make it absolutely clear than<BR>
     any such warranty, support, indemnity or liability obligation is<BR>
     offered by You alone, and You hereby agree to indemnify the Initial<BR>
     Developer and every Contributor for any liability incurred by the<BR>
     Initial Developer or such Contributor as a result of warranty,<BR>
     support, indemnity or liability terms You offer.</P>

<P>     3.6. Distribution of Executable Versions.<BR>
     You may distribute Covered Code in Executable form only if the<BR>
     requirements of Section 3.1-3.5 have been met for that Covered Code,<BR>
     and if You include a notice stating that the Source Code version of<BR>
     the Covered Code is available under the terms of this License,<BR>
     including a description of how and where You have fulfilled the<BR>
     obligations of Section 3.2. The notice must be conspicuously included<BR>
     in any notice in an Executable version, related documentation or<BR>
     collateral in which You describe recipients' rights relating to the<BR>
     Covered Code. You may distribute the Executable version of Covered<BR>
     Code or ownership rights under a license of Your choice, which may<BR>
     contain terms different from this License, provided that You are in<BR>
     compliance with the terms of this License and that the license for the<BR>
     Executable version does not attempt to limit or alter the recipient's<BR>
     rights in the Source Code version from the rights set forth in this<BR>
     License. If You distribute the Executable version under a different<BR>
     license You must make it absolutely clear that any terms which differ<BR>
     from this License are offered by You alone, not by the Initial<BR>
     Developer or any Contributor. You hereby agree to indemnify the<BR>
     Initial Developer and every Contributor for any liability incurred by<BR>
     the Initial Developer or such Contributor as a result of any such<BR>
     terms You offer.</P>

<P>     3.7. Larger Works.<BR>
     You may create a Larger Work by combining Covered Code with other code<BR>
     not governed by the terms of this License and distribute the Larger<BR>
     Work as a single product. In such a case, You must make sure the<BR>
     requirements of this License are fulfilled for the Covered Code.</P>

<P>4. Inability to Comply Due to Statute or Regulation.</P>

<P>     If it is impossible for You to comply with any of the terms of this<BR>
     License with respect to some or all of the Covered Code due to<BR>
     statute, judicial order, or regulation then You must: (a) comply with<BR>
     the terms of this License to the maximum extent possible; and (b)<BR>
     describe the limitations and the code they affect. Such description<BR>
     must be included in the LEGAL file described in Section 3.4 and must<BR>
     be included with all distributions of the Source Code. Except to the<BR>
     extent prohibited by statute or regulation, such description must be<BR>
     sufficiently detailed for a recipient of ordinary skill to be able to<BR>
     understand it.</P>

<P>5. Application of this License.</P>

<P>     This License applies to code to which the Initial Developer has<BR>
     attached the notice in Exhibit A and to related Covered Code.</P>

<P>6. Versions of the License.</P>

<P>     6.1. New Versions.<BR>
     Netscape Communications Corporation (&quot;Netscape&quot;) may publish revised<BR>
     and/or new versions of the License from time to time. Each version<BR>
     will be given a distinguishing version number.</P>

<P>     6.2. Effect of New Versions.<BR>
     Once Covered Code has been published under a particular version of the<BR>
     License, You may always continue to use it under the terms of that<BR>
     version. You may also choose to use such Covered Code under the terms<BR>
     of any subsequent version of the License published by Netscape. No one<BR>
     other than Netscape has the right to modify the terms applicable to<BR>
     Covered Code created under this License.</P>

<P>     6.3. Derivative Works.<BR>
     If You create or use a modified version of this License (which you may<BR>
     only do in order to apply it to code which is not already Covered Code<BR>
     governed by this License), You must (a) rename Your license so that<BR>
     the phrases &quot;Mozilla&quot;, &quot;MOZILLAPL&quot;, &quot;MOZPL&quot;, &quot;Netscape&quot;,<BR>
     &quot;MPL&quot;, &quot;NPL&quot; or any confusingly similar phrase do not appear in your<BR>
     license (except to note that your license differs from this License)<BR>
     and (b) otherwise make it clear that Your version of the license<BR>
     contains terms which differ from the Mozilla Public License and<BR>
     Netscape Public License. (Filling in the name of the Initial<BR>
     Developer, Original Code or Contributor in the notice described in<BR>
     Exhibit A shall not of themselves be deemed to be modifications of<BR>
     this License.)</P>

<P>7. DISCLAIMER OF WARRANTY.</P>

<P>     COVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN &quot;AS IS&quot; BASIS,<BR>
     WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,<BR>
     WITHOUT LIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF<BR>
     DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING.<BR>
     THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED CODE<BR>
     IS WITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT,<BR>
     YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE<BR>
     COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER<BR>
     OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF<BR>
     ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER.</P>

<P>8. TERMINATION.</P>

<P>     8.1.  This License and the rights granted hereunder will terminate<BR>
     automatically if You fail to comply with terms herein and fail to cure<BR>
     such breach within 30 days of becoming aware of the breach. All<BR>
     sublicenses to the Covered Code which are properly granted shall<BR>
     survive any termination of this License. Provisions which, by their<BR>
     nature, must remain in effect beyond the termination of this License<BR>
     shall survive.</P>

<P>     8.2.  If You initiate litigation by asserting a patent infringement<BR>
     claim (excluding declatory judgment actions) against Initial Developer<BR>
     or a Contributor (the Initial Developer or Contributor against whom<BR>
     You file such action is referred to as &quot;Participant&quot;)  alleging that:</P>

<P>     (a)  such Participant's Contributor Version directly or indirectly<BR>
     infringes any patent, then any and all rights granted by such<BR>
     Participant to You under Sections 2.1 and/or 2.2 of this License<BR>
     shall, upon 60 days notice from Participant terminate prospectively,<BR>
     unless if within 60 days after receipt of notice You either: <IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/information.gif" height="16" width="16" align="absmiddle" alt="" border="0"><BR>
     agree in writing to pay Participant a mutually agreeable reasonable<BR>
     royalty for Your past and future use of Modifications made by such<BR>
     Participant, or (ii) withdraw Your litigation claim with respect to<BR>
     the Contributor Version against such Participant.  If within 60 days<BR>
     of notice, a reasonable royalty and payment arrangement are not<BR>
     mutually agreed upon in writing by the parties or the litigation claim<BR>
     is not withdrawn, the rights granted by Participant to You under<BR>
     Sections 2.1 and/or 2.2 automatically terminate at the expiration of<BR>
     the 60 day notice period specified above.</P>

<P>     (b)  any software, hardware, or device, other than such Participant's<BR>
     Contributor Version, directly or indirectly infringes any patent, then<BR>
     any rights granted to You by such Participant under Sections 2.1(b)<BR>
     and 2.2(b) are revoked effective as of the date You first made, used,<BR>
     sold, distributed, or had made, Modifications made by that<BR>
     Participant.</P>

<P>     8.3.  If You assert a patent infringement claim against Participant<BR>
     alleging that such Participant's Contributor Version directly or<BR>
     indirectly infringes any patent where such claim is resolved (such as<BR>
     by license or settlement) prior to the initiation of patent<BR>
     infringement litigation, then the reasonable value of the licenses<BR>
     granted by such Participant under Sections 2.1 or 2.2 shall be taken<BR>
     into account in determining the amount or value of any payment or<BR>
     license.</P>

<P>     8.4.  In the event of termination under Sections 8.1 or 8.2 above,<BR>
     all end user license agreements (excluding distributors and resellers)<BR>
     which have been validly granted by You or any distributor hereunder<BR>
     prior to termination shall survive termination.</P>

<P>9. LIMITATION OF LIABILITY.</P>

<P>     UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT<BR>
     (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL<BR>
     DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED CODE,<BR>
     OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR<BR>
     ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY<BR>
     CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL,<BR>
     WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER<BR>
     COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN<BR>
     INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF<BR>
     LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY<BR>
     RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW<BR>
     PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE<BR>
     EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO<BR>
     THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU.</P>

<P>10. U.S. GOVERNMENT END USERS.</P>

<P>     The Covered Code is a &quot;commercial item,&quot; as that term is defined in<BR>
     48 C.F.R. 2.101 (Oct. 1995), consisting of &quot;commercial computer<BR>
     software&quot; and &quot;commercial computer software documentation,&quot; as such<BR>
     terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48<BR>
     C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995),<BR>
     all U.S. Government End Users acquire Covered Code with only those<BR>
     rights set forth herein.</P>

<P>11. MISCELLANEOUS.</P>

<P>     This License represents the complete agreement concerning subject<BR>
     matter hereof. If any provision of this License is held to be<BR>
     unenforceable, such provision shall be reformed only to the extent<BR>
     necessary to make it enforceable. This License shall be governed by<BR>
     California law provisions (except to the extent applicable law, if<BR>
     any, provides otherwise), excluding its conflict-of-law provisions.<BR>
     With respect to disputes in which at least one party is a citizen of,<BR>
     or an entity chartered or registered to do business in the United<BR>
     States of America, any litigation relating to this License shall be<BR>
     subject to the jurisdiction of the Federal Courts of the Northern<BR>
     District of California, with venue lying in Santa Clara County,<BR>
     California, with the losing party responsible for costs, including<BR>
     without limitation, court costs and reasonable attorneys' fees and<BR>
     expenses. The application of the United Nations Convention on<BR>
     Contracts for the International Sale of Goods is expressly excluded.<BR>
     Any law or regulation which provides that the language of a contract<BR>
     shall be construed against the drafter shall not apply to this<BR>
     License.</P>

<P>12. RESPONSIBILITY FOR CLAIMS.</P>

<P>     As between Initial Developer and the Contributors, each party is<BR>
     responsible for claims and damages arising, directly or indirectly,<BR>
     out of its utilization of rights under this License and You agree to<BR>
     work with Initial Developer and Contributors to distribute such<BR>
     responsibility on an equitable basis. Nothing herein is intended or<BR>
     shall be deemed to constitute any admission of liability.</P>

<P>13. MULTIPLE-LICENSED CODE.</P>

<P>     Initial Developer may designate portions of the Covered Code as<BR>
     &quot;Multiple-Licensed&quot;.  &quot;Multiple-Licensed&quot; means that the Initial<BR>
     Developer permits you to utilize portions of the Covered Code under<BR>
     Your choice of the NPL or the alternative licenses, if any, specified<BR>
     by the Initial Developer in the file described in Exhibit A.</P>

<P>EXHIBIT A -Mozilla Public License.</P>

<P>     ``The contents of this file are subject to the Mozilla Public License<BR>
     Version 1.1 (the &quot;License&quot;); you may not use this file except in<BR>
     compliance with the License. You may obtain a copy of the License at<BR>
     <A href="http://www.mozilla.org/MPL/" class="external-link" rel="nofollow">http://www.mozilla.org/MPL/</A></P>

<P>     Software distributed under the License is distributed on an &quot;AS IS&quot;<BR>
     basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the<BR>
     License for the specific language governing rights and limitations<BR>
     under the License.</P>

<P>     The Original Code is ______________________________________.</P>

<P>     The Initial Developer of the Original Code is ________________________.<BR>
     Portions created by ______________________ are Copyright (C) ______<BR>
     _______________________. All Rights Reserved.</P>

<P>     Contributor(s): ______________________________________.</P>

<P>     Alternatively, the contents of this file may be used under the terms<BR>
     of the _____ license (the  &quot;<A href="https://cwiki.apache.org/confluence/pages/createpage.action?spaceKey=TUSCANY&title=___&linkCreation=true&fromPageId=47503" class="createlink">&#95;&#95;&#95;</A> License&quot;), in which case the<BR>
     provisions of <A href="https://cwiki.apache.org/confluence/pages/createpage.action?spaceKey=TUSCANY&title=______&linkCreation=true&fromPageId=47503" class="createlink">&#95;&#95;&#95;&#95;&#95;&#95;</A> License are applicable instead of those<BR>
     above.  If you wish to allow use of your version of this file only<BR>
     under the terms of the <A href="https://cwiki.apache.org/confluence/pages/createpage.action?spaceKey=TUSCANY&title=____&linkCreation=true&fromPageId=47503" class="createlink">&#95;&#95;&#95;&#95;</A> License and not to allow others to use<BR>
     your version of this file under the MPL, indicate your decision by<BR>
     deleting  the provisions above and replace  them with the notice and<BR>
     other provisions required by the <A href="https://cwiki.apache.org/confluence/pages/createpage.action?spaceKey=TUSCANY&title=___&linkCreation=true&fromPageId=47503" class="createlink">&#95;&#95;&#95;</A> License.  If you do not delete<BR>
     the provisions above, a recipient may use your version of this file<BR>
     under either the MPL or the <A href="https://cwiki.apache.org/confluence/pages/createpage.action?spaceKey=TUSCANY&title=___&linkCreation=true&fromPageId=47503" class="createlink">&#95;&#95;&#95;</A> License.&quot;</P>

<P>     [NOTE: The text of this Exhibit A may differ slightly from the text of<BR>
     the notices in the Source Code files of the Original Code. You should<BR>
     use the text of this Exhibit A rather than the text found in the<BR>
     Original Code Source Code for Your Modifications.]</P>


<P>===============================================================================</P>

<P>For the JAX-WS Reference Implementation component:</P>

<P>COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.0</P>


<P>      1. Definitions.</P>

<P>            1.1. &quot;Contributor&quot; means each individual or entity that<BR>
            creates or contributes to the creation of Modifications.</P>

<P>            1.2. &quot;Contributor Version&quot; means the combination of the<BR>
            Original Software, prior Modifications used by a<BR>
            Contributor (if any), and the Modifications made by that<BR>
            particular Contributor.</P>

<P>            1.3. &quot;Covered Software&quot; means (a) the Original Software, or<BR>
            (b) Modifications, or (c) the combination of files<BR>
            containing Original Software with files containing<BR>
            Modifications, in each case including portions thereof.</P>

<P>            1.4. &quot;Executable&quot; means the Covered Software in any form<BR>
            other than Source Code. </P>

<P>            1.5. &quot;Initial Developer&quot; means the individual or entity<BR>
            that first makes Original Software available under this<BR>
            License. </P>

<P>            1.6. &quot;Larger Work&quot; means a work which combines Covered<BR>
            Software or portions thereof with code not governed by the<BR>
            terms of this License.</P>

<P>            1.7. &quot;License&quot; means this document.</P>

<P>            1.8. &quot;Licensable&quot; means having the right to grant, to the<BR>
            maximum extent possible, whether at the time of the initial<BR>
            grant or subsequently acquired, any and all of the rights<BR>
            conveyed herein.</P>

<P>            1.9. &quot;Modifications&quot; means the Source Code and Executable<BR>
            form of any of the following: </P>

<P>                  A. Any file that results from an addition to,<BR>
                  deletion from or modification of the contents of a<BR>
                  file containing Original Software or previous<BR>
                  Modifications; </P>

<P>                  B. Any new file that contains any part of the<BR>
                  Original Software or previous Modification; or </P>

<P>                  C. Any new file that is contributed or otherwise made<BR>
                  available under the terms of this License.</P>

<P>            1.10. &quot;Original Software&quot; means the Source Code and<BR>
            Executable form of computer software code that is<BR>
            originally released under this License. </P>

<P>            1.11. &quot;Patent Claims&quot; means any patent claim(s), now owned<BR>
            or hereafter acquired, including without limitation,<BR>
            method, process, and apparatus claims, in any patent<BR>
            Licensable by grantor. </P>

<P>            1.12. &quot;Source Code&quot; means (a) the common form of computer<BR>
            software code in which modifications are made and (b)<BR>
            associated documentation included in or with such code.</P>

<P>            1.13. &quot;You&quot; (or &quot;Your&quot;) means an individual or a legal<BR>
            entity exercising rights under, and complying with all of<BR>
            the terms of, this License. For legal entities, &quot;You&quot;<BR>
            includes any entity which controls, is controlled by, or is<BR>
            under common control with You. For purposes of this<BR>
            definition, &quot;control&quot; means (a) the power, direct or<BR>
            indirect, to cause the direction or management of such<BR>
            entity, whether by contract or otherwise, or (b) ownership<BR>
            of more than fifty percent (50%) of the outstanding shares<BR>
            or beneficial ownership of such entity.</P>

<P>      2. License Grants. </P>

<P>            2.1. The Initial Developer Grant.</P>

<P>            Conditioned upon Your compliance with Section 3.1 below and<BR>
            subject to third party intellectual property claims, the<BR>
            Initial Developer hereby grants You a world-wide,<BR>
            royalty-free, non-exclusive license: </P>

<P>                  (a) under intellectual property rights (other than<BR>
                  patent or trademark) Licensable by Initial Developer,<BR>
                  to use, reproduce, modify, display, perform,<BR>
                  sublicense and distribute the Original Software (or<BR>
                  portions thereof), with or without Modifications,<BR>
                  and/or as part of a Larger Work; and </P>

<P>                  (b) under Patent Claims infringed by the making,<BR>
                  using or selling of Original Software, to make, have<BR>
                  made, use, practice, sell, and offer for sale, and/or<BR>
                  otherwise dispose of the Original Software (or<BR>
                  portions thereof). </P>

<P>                  (c) The licenses granted in Sections 2.1(a) and (b)<BR>
                  are effective on the date Initial Developer first<BR>
                  distributes or otherwise makes the Original Software<BR>
                  available to a third party under the terms of this<BR>
                  License. </P>

<P>                  (d) Notwithstanding Section 2.1(b) above, no patent<BR>
                  license is granted: (1) for code that You delete from<BR>
                  the Original Software, or (2) for infringements<BR>
                  caused by: <IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/information.gif" height="16" width="16" align="absmiddle" alt="" border="0"> the modification of the Original<BR>
                  Software, or (ii) the combination of the Original<BR>
                  Software with other software or devices. </P>

<P>            2.2. Contributor Grant.</P>

<P>            Conditioned upon Your compliance with Section 3.1 below and<BR>
            subject to third party intellectual property claims, each<BR>
            Contributor hereby grants You a world-wide, royalty-free,<BR>
            non-exclusive license:</P>

<P>                  (a) under intellectual property rights (other than<BR>
                  patent or trademark) Licensable by Contributor to<BR>
                  use, reproduce, modify, display, perform, sublicense<BR>
                  and distribute the Modifications created by such<BR>
                  Contributor (or portions thereof), either on an<BR>
                  unmodified basis, with other Modifications, as<BR>
                  Covered Software and/or as part of a Larger Work; and</P>


<P>                  (b) under Patent Claims infringed by the making,<BR>
                  using, or selling of Modifications made by that<BR>
                  Contributor either alone and/or in combination with<BR>
                  its Contributor Version (or portions of such<BR>
                  combination), to make, use, sell, offer for sale,<BR>
                  have made, and/or otherwise dispose of: (1)<BR>
                  Modifications made by that Contributor (or portions<BR>
                  thereof); and (2) the combination of Modifications<BR>
                  made by that Contributor with its Contributor Version<BR>
                  (or portions of such combination). </P>

<P>                  (c) The licenses granted in Sections 2.2(a) and<BR>
                  2.2(b) are effective on the date Contributor first<BR>
                  distributes or otherwise makes the Modifications<BR>
                  available to a third party. </P>

<P>                  (d) Notwithstanding Section 2.2(b) above, no patent<BR>
                  license is granted: (1) for any code that Contributor<BR>
                  has deleted from the Contributor Version; (2) for<BR>
                  infringements caused by: <IMG class="emoticon" src="https://cwiki.apache.org/confluence/images/icons/emoticons/information.gif" height="16" width="16" align="absmiddle" alt="" border="0"> third party<BR>
                  modifications of Contributor Version, or (ii) the<BR>
                  combination of Modifications made by that Contributor<BR>
                  with other software (except as part of the<BR>
                  Contributor Version) or other devices; or (3) under<BR>
                  Patent Claims infringed by Covered Software in the<BR>
                  absence of Modifications made by that Contributor. </P>

<P>      3. Distribution Obligations.</P>

<P>            3.1. Availability of Source Code.</P>

<P>            Any Covered Software that You distribute or otherwise make<BR>
            available in Executable form must also be made available in<BR>
            Source Code form and that Source Code form must be<BR>
            distributed only under the terms of this License. You must<BR>
            include a copy of this License with every copy of the<BR>
            Source Code form of the Covered Software You distribute or<BR>
            otherwise make available. You must inform recipients of any<BR>
            such Covered Software in Executable form as to how they can<BR>
            obtain such Covered Software in Source Code form in a<BR>
            reasonable manner on or through a medium customarily used<BR>
            for software exchange.</P>

<P>            3.2. Modifications.</P>

<P>            The Modifications that You create or to which You<BR>
            contribute are governed by the terms of this License. You<BR>
            represent that You believe Your Modifications are Your<BR>
            original creation(s) and/or You have sufficient rights to<BR>
            grant the rights conveyed by this License.</P>

<P>            3.3. Required Notices.</P>

<P>            You must include a notice in each of Your Modifications<BR>
            that identifies You as the Contributor of the Modification.<BR>
            You may not remove or alter any copyright, patent or<BR>
            trademark notices contained within the Covered Software, or<BR>
            any notices of licensing or any descriptive text giving<BR>
            attribution to any Contributor or the Initial Developer.</P>

<P>            3.4. Application of Additional Terms.</P>

<P>            You may not offer or impose any terms on any Covered<BR>
            Software in Source Code form that alters or restricts the<BR>
            applicable version of this License or the recipients'<BR>
            rights hereunder. You may choose to offer, and to charge a<BR>
            fee for, warranty, support, indemnity or liability<BR>
            obligations to one or more recipients of Covered Software.<BR>
            However, you may do so only on Your own behalf, and not on<BR>
            behalf of the Initial Developer or any Contributor. You<BR>
            must make it absolutely clear that any such warranty,<BR>
            support, indemnity or liability obligation is offered by<BR>
            You alone, and You hereby agree to indemnify the Initial<BR>
            Developer and every Contributor for any liability incurred<BR>
            by the Initial Developer or such Contributor as a result of<BR>
            warranty, support, indemnity or liability terms You offer.</P>


<P>            3.5. Distribution of Executable Versions.</P>

<P>            You may distribute the Executable form of the Covered<BR>
            Software under the terms of this License or under the terms<BR>
            of a license of Your choice, which may contain terms<BR>
            different from this License, provided that You are in<BR>
            compliance with the terms of this License and that the<BR>
            license for the Executable form does not attempt to limit<BR>
            or alter the recipient's rights in the Source Code form<BR>
            from the rights set forth in this License. If You<BR>
            distribute the Covered Software in Executable form under a<BR>
            different license, You must make it absolutely clear that<BR>
            any terms which differ from this License are offered by You<BR>
            alone, not by the Initial Developer or Contributor. You<BR>
            hereby agree to indemnify the Initial Developer and every<BR>
            Contributor for any liability incurred by the Initial<BR>
            Developer or such Contributor as a result of any such terms<BR>
            You offer.</P>

<P>            3.6. Larger Works.</P>

<P>            You may create a Larger Work by combining Covered Software<BR>
            with other code not governed by the terms of this License<BR>
            and distribute the Larger Work as a single product. In such<BR>
            a case, You must make sure the requirements of this License<BR>
            are fulfilled for the Covered Software. </P>

<P>      4. Versions of the License. </P>

<P>            4.1. New Versions.</P>

<P>            Sun Microsystems, Inc. is the initial license steward and<BR>
            may publish revised and/or new versions of this License<BR>
            from time to time. Each version will be given a<BR>
            distinguishing version number. Except as provided in<BR>
            Section 4.3, no one other than the license steward has the<BR>
            right to modify this License. </P>

<P>            4.2. Effect of New Versions.</P>

<P>            You may always continue to use, distribute or otherwise<BR>
            make the Covered Software available under the terms of the<BR>
            version of the License under which You originally received<BR>
            the Covered Software. If the Initial Developer includes a<BR>
            notice in the Original Software prohibiting it from being<BR>
            distributed or otherwise made available under any<BR>
            subsequent version of the License, You must distribute and<BR>
            make the Covered Software available under the terms of the<BR>
            version of the License under which You originally received<BR>
            the Covered Software. Otherwise, You may also choose to<BR>
            use, distribute or otherwise make the Covered Software<BR>
            available under the terms of any subsequent version of the<BR>
            License published by the license steward. </P>

<P>            4.3. Modified Versions.</P>

<P>            When You are an Initial Developer and You want to create a<BR>
            new license for Your Original Software, You may create and<BR>
            use a modified version of this License if You: (a) rename<BR>
            the license and remove any references to the name of the<BR>
            license steward (except to note that the license differs<BR>
            from this License); and (b) otherwise make it clear that<BR>
            the license contains terms which differ from this License.</P>


<P>      5. DISCLAIMER OF WARRANTY.</P>

<P>      COVERED SOFTWARE IS PROVIDED UNDER THIS LICENSE ON AN &quot;AS IS&quot;<BR>
      BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED,<BR>
      INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE COVERED<BR>
      SOFTWARE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR<BR>
      PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND<BR>
      PERFORMANCE OF THE COVERED SOFTWARE IS WITH YOU. SHOULD ANY<BR>
      COVERED SOFTWARE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE<BR>
      INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF<BR>
      ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF<BR>
      WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF<BR>
      ANY COVERED SOFTWARE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS<BR>
      DISCLAIMER. </P>

<P>      6. TERMINATION. </P>

<P>            6.1. This License and the rights granted hereunder will<BR>
            terminate automatically if You fail to comply with terms<BR>
            herein and fail to cure such breach within 30 days of<BR>
            becoming aware of the breach. Provisions which, by their<BR>
            nature, must remain in effect beyond the termination of<BR>
            this License shall survive.</P>

<P>            6.2. If You assert a patent infringement claim (excluding<BR>
            declaratory judgment actions) against Initial Developer or<BR>
            a Contributor (the Initial Developer or Contributor against<BR>
            whom You assert such claim is referred to as &quot;Participant&quot;)<BR>
            alleging that the Participant Software (meaning the<BR>
            Contributor Version where the Participant is a Contributor<BR>
            or the Original Software where the Participant is the<BR>
            Initial Developer) directly or indirectly infringes any<BR>
            patent, then any and all rights granted directly or<BR>
            indirectly to You by such Participant, the Initial<BR>
            Developer (if the Initial Developer is not the Participant)<BR>
            and all Contributors under Sections 2.1 and/or 2.2 of this<BR>
            License shall, upon 60 days notice from Participant<BR>
            terminate prospectively and automatically at the expiration<BR>
            of such 60 day notice period, unless if within such 60 day<BR>
            period You withdraw Your claim with respect to the<BR>
            Participant Software against such Participant either<BR>
            unilaterally or pursuant to a written agreement with<BR>
            Participant.</P>

<P>            6.3. In the event of termination under Sections 6.1 or 6.2<BR>
            above, all end user licenses that have been validly granted<BR>
            by You or any distributor hereunder prior to termination<BR>
            (excluding licenses granted to You by any distributor)<BR>
            shall survive termination.</P>

<P>      7. LIMITATION OF LIABILITY.</P>

<P>      UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT<BR>
      (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE<BR>
      INITIAL DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF<BR>
      COVERED SOFTWARE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE<BR>
      LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR<BR>
      CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT<BR>
      LIMITATION, DAMAGES FOR LOST PROFITS, LOSS OF GOODWILL, WORK<BR>
      STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER<BR>
      COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN<BR>
      INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF<BR>
      LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL<BR>
      INJURY RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT<BR>
      APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO<BR>
      NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR<BR>
      CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT<BR>
      APPLY TO YOU.</P>

<P>      8. U.S. GOVERNMENT END USERS.</P>

<P>      The Covered Software is a &quot;commercial item,&quot; as that term is<BR>
      defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of &quot;commercial<BR>
      computer software&quot; (as that term is defined at 48 C.F.R. <BR>
      252.227-7014(a)(1)) and &quot;commercial computer software<BR>
      documentation&quot; as such terms are used in 48 C.F.R. 12.212 (Sept.<BR>
      1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1<BR>
      through 227.7202-4 (June 1995), all U.S. Government End Users<BR>
      acquire Covered Software with only those rights set forth herein.<BR>
      This U.S. Government Rights clause is in lieu of, and supersedes,<BR>
      any other FAR, DFAR, or other clause or provision that addresses<BR>
      Government rights in computer software under this License.</P>

<P>      9. MISCELLANEOUS.</P>

<P>      This License represents the complete agreement concerning subject<BR>
      matter hereof. If any provision of this License is held to be<BR>
      unenforceable, such provision shall be reformed only to the<BR>
      extent necessary to make it enforceable. This License shall be<BR>
      governed by the law of the jurisdiction specified in a notice<BR>
      contained within the Original Software (except to the extent<BR>
      applicable law, if any, provides otherwise), excluding such<BR>
      jurisdiction's conflict-of-law provisions. Any litigation<BR>
      relating to this License shall be subject to the jurisdiction of<BR>
      the courts located in the jurisdiction and venue specified in a<BR>
      notice contained within the Original Software, with the losing<BR>
      party responsible for costs, including, without limitation, court<BR>
      costs and reasonable attorneys' fees and expenses. The<BR>
      application of the United Nations Convention on Contracts for the<BR>
      International Sale of Goods is expressly excluded. Any law or<BR>
      regulation which provides that the language of a contract shall<BR>
      be construed against the drafter shall not apply to this License.<BR>
      You agree that You alone are responsible for compliance with the<BR>
      United States export administration regulations (and the export<BR>
      control laws and regulation of any other countries) when You use,<BR>
      distribute or otherwise make available any Covered Software.</P>

<P>      10. RESPONSIBILITY FOR CLAIMS.</P>

<P>      As between Initial Developer and the Contributors, each party is<BR>
      responsible for claims and damages arising, directly or<BR>
      indirectly, out of its utilization of rights under this License<BR>
      and You agree to work with Initial Developer and Contributors to<BR>
      distribute such responsibility on an equitable basis. Nothing<BR>
      herein is intended or shall be deemed to constitute any admission<BR>
      of liability.</P>

</TD></TR></TBODY></TABLE>
							</DIV>
						</DIV>
					</DIV>	
		            <!-- pageContent macro end -->
					
                </TD>
            </TR>
        </TABLE>

		<!-- footer macro -->
				<SCRIPT src="http://www.google-analytics.com/urchin.js" type="text/javascript">
		</SCRIPT>
		<SCRIPT type="text/javascript">
		   _uacct = "UA-1174707-5";
		   urchinTracker();
		</SCRIPT>
		
				<A href="http://www.statcounter.com/" target="_blank"><IMG src="http://c26.statcounter.com/counter.php?sc_project=2619156&java=0&security=94bd7e7d&invisible=0" alt="website stats" border="0"></A>    

		<DIV class="footer">
			Copyright � 2003-2012, The Apache Software Foundation&nbsp;&nbsp;</BR>
                        Apache Tuscany and the Apache Tuscany project logo are trademarks of The Apache Software Foundation.
		</DIV>
		<!-- footer macro end -->

    </BODY>
</HTML>