summaryrefslogtreecommitdiffstats
path: root/site/branches/site-20060730-mvnbased/src/site/resources/javadoc/tuscany-core/org/apache/tuscany/core/context/impl/AbstractCompositeContext.html
blob: 2e3cd79171e786dc9e3b40863c6aca0604e85579 (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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.5.0_06) on Mon May 15 07:33:03 EDT 2006 -->
<META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<TITLE>
AbstractCompositeContext (Tuscany Core incubating-M1 API)
</TITLE>

<META NAME="keywords" CONTENT="org.apache.tuscany.core.context.impl.AbstractCompositeContext class">

<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../stylesheet.css" TITLE="Style">

<SCRIPT type="text/javascript">
function windowTitle()
{
    parent.document.title="AbstractCompositeContext (Tuscany Core incubating-M1 API)";
}
</SCRIPT>
<NOSCRIPT>
</NOSCRIPT>

</HEAD>

<BODY BGCOLOR="white" onload="windowTitle();">


<!-- ========= START OF TOP NAVBAR ======= -->
<A NAME="navbar_top"><!-- --></A>
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_top_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
  <TR ALIGN="center" VALIGN="top">
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD>
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD>
  <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT>&nbsp;</TD>
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="class-use/AbstractCompositeContext.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A>&nbsp;</TD>
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD>
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD>
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD>
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD>
  </TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
Tuscany Core</EM>
</TD>
</TR>

<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
&nbsp;PREV CLASS&nbsp;
&nbsp;<A HREF="../../../../../../org/apache/tuscany/core/context/impl/AbstractCompositeContext.NameToScope.html" title="class in org.apache.tuscany.core.context.impl"><B>NEXT CLASS</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
  <A HREF="../../../../../../index.html?org/apache/tuscany/core/context/impl/AbstractCompositeContext.html" target="_top"><B>FRAMES</B></A>  &nbsp;
&nbsp;<A HREF="AbstractCompositeContext.html" target="_top"><B>NO FRAMES</B></A>  &nbsp;
&nbsp;<SCRIPT type="text/javascript">
  <!--
  if(window==top) {
    document.writeln('<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
  }
  //-->
</SCRIPT>
<NOSCRIPT>
  <A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>


</FONT></TD>
</TR>
<TR>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
  SUMMARY:&nbsp;<A HREF="#nested_class_summary">NESTED</A>&nbsp;|&nbsp;<A HREF="#field_summary">FIELD</A>&nbsp;|&nbsp;<A HREF="#constructor_summary">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_summary">METHOD</A></FONT></TD>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
DETAIL:&nbsp;<A HREF="#field_detail">FIELD</A>&nbsp;|&nbsp;<A HREF="#constructor_detail">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_detail">METHOD</A></FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_top"></A>
<!-- ========= END OF TOP NAVBAR ========= -->

<HR>
<!-- ======== START OF CLASS DATA ======== -->
<H2>
<FONT SIZE="-1">
org.apache.tuscany.core.context.impl</FONT>
<BR>
Class AbstractCompositeContext</H2>
<PRE>
java.lang.Object
  <IMG SRC="../../../../../../resources/inherit.gif" ALT="extended by "><A HREF="../../../../../../org/apache/tuscany/core/context/impl/AbstractLifecycle.html" title="class in org.apache.tuscany.core.context.impl">org.apache.tuscany.core.context.impl.AbstractLifecycle</A>
      <IMG SRC="../../../../../../resources/inherit.gif" ALT="extended by "><A HREF="../../../../../../org/apache/tuscany/core/context/impl/AbstractContext.html" title="class in org.apache.tuscany.core.context.impl">org.apache.tuscany.core.context.impl.AbstractContext</A>
          <IMG SRC="../../../../../../resources/inherit.gif" ALT="extended by "><B>org.apache.tuscany.core.context.impl.AbstractCompositeContext</B>
</PRE>
<DL>
<DT><B>All Implemented Interfaces:</B> <DD><A HREF="../../../../../../org/apache/tuscany/core/builder/ContextFactoryBuilder.html" title="interface in org.apache.tuscany.core.builder">ContextFactoryBuilder</A>, <A HREF="../../../../../../org/apache/tuscany/core/builder/WireBuilder.html" title="interface in org.apache.tuscany.core.builder">WireBuilder</A>, <A HREF="../../../../../../org/apache/tuscany/core/context/AutowireContext.html" title="interface in org.apache.tuscany.core.context">AutowireContext</A>, <A HREF="../../../../../../org/apache/tuscany/core/context/CompositeContext.html" title="interface in org.apache.tuscany.core.context">CompositeContext</A>, <A HREF="../../../../../../org/apache/tuscany/core/context/ConfigurationContext.html" title="interface in org.apache.tuscany.core.context">ConfigurationContext</A>, <A HREF="../../../../../../org/apache/tuscany/core/context/Context.html" title="interface in org.apache.tuscany.core.context">Context</A>, <A HREF="../../../../../../org/apache/tuscany/core/context/EventPublisher.html" title="interface in org.apache.tuscany.core.context">EventPublisher</A>, <A HREF="../../../../../../org/apache/tuscany/core/context/Lifecycle.html" title="interface in org.apache.tuscany.core.context">Lifecycle</A>, <A HREF="../../../../../../org/apache/tuscany/core/context/ScopeAwareContext.html" title="interface in org.apache.tuscany.core.context">ScopeAwareContext</A></DD>
</DL>
<DL>
<DT><B>Direct Known Subclasses:</B> <DD><A HREF="../../../../../../org/apache/tuscany/core/context/impl/CompositeContextImpl.html" title="class in org.apache.tuscany.core.context.impl">CompositeContextImpl</A>, <A HREF="../../../../../../org/apache/tuscany/core/system/context/SystemCompositeContextImpl.html" title="class in org.apache.tuscany.core.system.context">SystemCompositeContextImpl</A></DD>
</DL>
<HR>
<DL>
<DT><PRE>public abstract class <B>AbstractCompositeContext</B><DT>extends <A HREF="../../../../../../org/apache/tuscany/core/context/impl/AbstractContext.html" title="class in org.apache.tuscany.core.context.impl">AbstractContext</A><DT>implements <A HREF="../../../../../../org/apache/tuscany/core/context/AutowireContext.html" title="interface in org.apache.tuscany.core.context">AutowireContext</A>, <A HREF="../../../../../../org/apache/tuscany/core/context/ScopeAwareContext.html" title="interface in org.apache.tuscany.core.context">ScopeAwareContext</A>, <A HREF="../../../../../../org/apache/tuscany/core/context/ConfigurationContext.html" title="interface in org.apache.tuscany.core.context">ConfigurationContext</A></DL>
</PRE>

<P>
The base implementation of a composite context
<P>

<P>
<DL>
<DT><B>Version:</B></DT>
  <DD>$Rev: 406160 $ $Date: 2006-05-13 19:05:09 -0400 (Sat, 13 May 2006) $</DD>
</DL>
<HR>

<P>
<!-- ======== NESTED CLASS SUMMARY ======== -->

<A NAME="nested_class_summary"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
<B>Nested Class Summary</B></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>protected static&nbsp;class</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../../org/apache/tuscany/core/context/impl/AbstractCompositeContext.NameToScope.html" title="class in org.apache.tuscany.core.context.impl">AbstractCompositeContext.NameToScope</A></B></CODE>

<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD>
</TR>
</TABLE>
&nbsp;<!-- =========== FIELD SUMMARY =========== -->

<A NAME="field_summary"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
<B>Field Summary</B></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>protected &nbsp;org.apache.tuscany.model.assembly.AssemblyContext</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../../org/apache/tuscany/core/context/impl/AbstractCompositeContext.html#assemblyContext">assemblyContext</A></B></CODE>

<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>protected &nbsp;<A HREF="../../../../../../org/apache/tuscany/core/context/ConfigurationContext.html" title="interface in org.apache.tuscany.core.context">ConfigurationContext</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../../org/apache/tuscany/core/context/impl/AbstractCompositeContext.html#configurationContext">configurationContext</A></B></CODE>

<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>protected &nbsp;java.util.Map&lt;java.lang.String,<A HREF="../../../../../../org/apache/tuscany/core/builder/ContextFactory.html" title="interface in org.apache.tuscany.core.builder">ContextFactory</A>&lt;<A HREF="../../../../../../org/apache/tuscany/core/context/Context.html" title="interface in org.apache.tuscany.core.context">Context</A>&gt;&gt;</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../../org/apache/tuscany/core/context/impl/AbstractCompositeContext.html#configurations">configurations</A></B></CODE>

<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static&nbsp;int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../../org/apache/tuscany/core/context/impl/AbstractCompositeContext.html#DEFAULT_WAIT">DEFAULT_WAIT</A></B></CODE>

<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>protected &nbsp;<A HREF="../../../../../../org/apache/tuscany/core/context/EventContext.html" title="interface in org.apache.tuscany.core.context">EventContext</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../../org/apache/tuscany/core/context/impl/AbstractCompositeContext.html#eventContext">eventContext</A></B></CODE>

<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>protected &nbsp;java.util.Map&lt;org.apache.tuscany.model.assembly.Scope,<A HREF="../../../../../../org/apache/tuscany/core/context/ScopeContext.html" title="interface in org.apache.tuscany.core.context">ScopeContext</A>&gt;</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../../org/apache/tuscany/core/context/impl/AbstractCompositeContext.html#immutableScopeContexts">immutableScopeContexts</A></B></CODE>

<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>protected &nbsp;boolean</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../../org/apache/tuscany/core/context/impl/AbstractCompositeContext.html#initialized">initialized</A></B></CODE>

<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>protected &nbsp;java.util.concurrent.CountDownLatch</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../../org/apache/tuscany/core/context/impl/AbstractCompositeContext.html#initializeLatch">initializeLatch</A></B></CODE>

<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>protected &nbsp;java.lang.Object</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../../org/apache/tuscany/core/context/impl/AbstractCompositeContext.html#lock">lock</A></B></CODE>

<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>protected &nbsp;org.apache.tuscany.model.assembly.Module</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../../org/apache/tuscany/core/context/impl/AbstractCompositeContext.html#module">module</A></B></CODE>

<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>protected &nbsp;<A HREF="../../../../../../org/apache/tuscany/core/context/CompositeContext.html" title="interface in org.apache.tuscany.core.context">CompositeContext</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../../org/apache/tuscany/core/context/impl/AbstractCompositeContext.html#parentContext">parentContext</A></B></CODE>

<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>protected &nbsp;java.util.Map&lt;org.apache.tuscany.model.assembly.Scope,<A HREF="../../../../../../org/apache/tuscany/core/context/ScopeContext.html" title="interface in org.apache.tuscany.core.context">ScopeContext</A>&gt;</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../../org/apache/tuscany/core/context/impl/AbstractCompositeContext.html#scopeContexts">scopeContexts</A></B></CODE>

<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>protected &nbsp;java.util.Map&lt;java.lang.String,<A HREF="../../../../../../org/apache/tuscany/core/context/ScopeContext.html" title="interface in org.apache.tuscany.core.context">ScopeContext</A>&gt;</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../../org/apache/tuscany/core/context/impl/AbstractCompositeContext.html#scopeIndex">scopeIndex</A></B></CODE>

<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>protected &nbsp;<A HREF="../../../../../../org/apache/tuscany/core/context/ScopeStrategy.html" title="interface in org.apache.tuscany.core.context">ScopeStrategy</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../../org/apache/tuscany/core/context/impl/AbstractCompositeContext.html#scopeStrategy">scopeStrategy</A></B></CODE>

<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD>
</TR>
</TABLE>
&nbsp;<A NAME="fields_inherited_from_class_org.apache.tuscany.core.context.impl.AbstractLifecycle"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left"><B>Fields inherited from class org.apache.tuscany.core.context.impl.<A HREF="../../../../../../org/apache/tuscany/core/context/impl/AbstractLifecycle.html" title="class in org.apache.tuscany.core.context.impl">AbstractLifecycle</A></B></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE><A HREF="../../../../../../org/apache/tuscany/core/context/impl/AbstractLifecycle.html#lifecycleState">lifecycleState</A>, <A HREF="../../../../../../org/apache/tuscany/core/context/impl/AbstractLifecycle.html#name">name</A></CODE></TD>
</TR>
</TABLE>
&nbsp;<A NAME="fields_inherited_from_class_org.apache.tuscany.core.context.Lifecycle"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left"><B>Fields inherited from interface org.apache.tuscany.core.context.<A HREF="../../../../../../org/apache/tuscany/core/context/Lifecycle.html" title="interface in org.apache.tuscany.core.context">Lifecycle</A></B></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE><A HREF="../../../../../../org/apache/tuscany/core/context/Lifecycle.html#CONFIG_ERROR">CONFIG_ERROR</A>, <A HREF="../../../../../../org/apache/tuscany/core/context/Lifecycle.html#ERROR">ERROR</A>, <A HREF="../../../../../../org/apache/tuscany/core/context/Lifecycle.html#INITIALIZED">INITIALIZED</A>, <A HREF="../../../../../../org/apache/tuscany/core/context/Lifecycle.html#INITIALIZING">INITIALIZING</A>, <A HREF="../../../../../../org/apache/tuscany/core/context/Lifecycle.html#RUNNING">RUNNING</A>, <A HREF="../../../../../../org/apache/tuscany/core/context/Lifecycle.html#STARTED">STARTED</A>, <A HREF="../../../../../../org/apache/tuscany/core/context/Lifecycle.html#STOPPED">STOPPED</A>, <A HREF="../../../../../../org/apache/tuscany/core/context/Lifecycle.html#STOPPING">STOPPING</A>, <A HREF="../../../../../../org/apache/tuscany/core/context/Lifecycle.html#UNINITIALIZED">UNINITIALIZED</A></CODE></TD>
</TR>
</TABLE>
&nbsp;<A NAME="fields_inherited_from_class_org.apache.tuscany.core.context.Lifecycle"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left"><B>Fields inherited from interface org.apache.tuscany.core.context.<A HREF="../../../../../../org/apache/tuscany/core/context/Lifecycle.html" title="interface in org.apache.tuscany.core.context">Lifecycle</A></B></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE><A HREF="../../../../../../org/apache/tuscany/core/context/Lifecycle.html#CONFIG_ERROR">CONFIG_ERROR</A>, <A HREF="../../../../../../org/apache/tuscany/core/context/Lifecycle.html#ERROR">ERROR</A>, <A HREF="../../../../../../org/apache/tuscany/core/context/Lifecycle.html#INITIALIZED">INITIALIZED</A>, <A HREF="../../../../../../org/apache/tuscany/core/context/Lifecycle.html#INITIALIZING">INITIALIZING</A>, <A HREF="../../../../../../org/apache/tuscany/core/context/Lifecycle.html#RUNNING">RUNNING</A>, <A HREF="../../../../../../org/apache/tuscany/core/context/Lifecycle.html#STARTED">STARTED</A>, <A HREF="../../../../../../org/apache/tuscany/core/context/Lifecycle.html#STOPPED">STOPPED</A>, <A HREF="../../../../../../org/apache/tuscany/core/context/Lifecycle.html#STOPPING">STOPPING</A>, <A HREF="../../../../../../org/apache/tuscany/core/context/Lifecycle.html#UNINITIALIZED">UNINITIALIZED</A></CODE></TD>
</TR>
</TABLE>
&nbsp;
<!-- ======== CONSTRUCTOR SUMMARY ======== -->

<A NAME="constructor_summary"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
<B>Constructor Summary</B></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE><B><A HREF="../../../../../../org/apache/tuscany/core/context/impl/AbstractCompositeContext.html#AbstractCompositeContext()">AbstractCompositeContext</A></B>()</CODE>

<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE><B><A HREF="../../../../../../org/apache/tuscany/core/context/impl/AbstractCompositeContext.html#AbstractCompositeContext(java.lang.String, org.apache.tuscany.core.context.CompositeContext, org.apache.tuscany.core.context.ScopeStrategy, org.apache.tuscany.core.context.EventContext, org.apache.tuscany.core.context.ConfigurationContext)">AbstractCompositeContext</A></B>(java.lang.String&nbsp;name,
                         <A HREF="../../../../../../org/apache/tuscany/core/context/CompositeContext.html" title="interface in org.apache.tuscany.core.context">CompositeContext</A>&nbsp;parent,
                         <A HREF="../../../../../../org/apache/tuscany/core/context/ScopeStrategy.html" title="interface in org.apache.tuscany.core.context">ScopeStrategy</A>&nbsp;strategy,
                         <A HREF="../../../../../../org/apache/tuscany/core/context/EventContext.html" title="interface in org.apache.tuscany.core.context">EventContext</A>&nbsp;ctx,
                         <A HREF="../../../../../../org/apache/tuscany/core/context/ConfigurationContext.html" title="interface in org.apache.tuscany.core.context">ConfigurationContext</A>&nbsp;configCtx)</CODE>

<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD>
</TR>
</TABLE>
&nbsp;
<!-- ========== METHOD SUMMARY =========== -->

<A NAME="method_summary"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
<B>Method Summary</B></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>&nbsp;void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../../org/apache/tuscany/core/context/impl/AbstractCompositeContext.html#build(org.apache.tuscany.model.assembly.AssemblyObject)">build</A></B>(org.apache.tuscany.model.assembly.AssemblyObject&nbsp;model)</CODE>

<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Creates or updates a context factory based on configuration contained in the given model object.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>protected &nbsp;void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../../org/apache/tuscany/core/context/impl/AbstractCompositeContext.html#buildTarget(org.apache.tuscany.core.builder.ContextFactory)">buildTarget</A></B>(<A HREF="../../../../../../org/apache/tuscany/core/builder/ContextFactory.html" title="interface in org.apache.tuscany.core.builder">ContextFactory</A>&lt;?&gt;&nbsp;target)</CODE>

<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Signals to target side of reference configurations to initialize</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>protected &nbsp;void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../../org/apache/tuscany/core/context/impl/AbstractCompositeContext.html#checkInit()">checkInit</A></B>()</CODE>

<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Blocks until the module context has been initialized</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>&nbsp;void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../../org/apache/tuscany/core/context/impl/AbstractCompositeContext.html#completeTargetChain(org.apache.tuscany.core.wire.TargetWireFactory, java.lang.Class, org.apache.tuscany.core.context.ScopeContext)">completeTargetChain</A></B>(<A HREF="../../../../../../org/apache/tuscany/core/wire/TargetWireFactory.html" title="interface in org.apache.tuscany.core.wire">TargetWireFactory</A>&nbsp;targetFactory,
                    java.lang.Class&nbsp;targetType,
                    <A HREF="../../../../../../org/apache/tuscany/core/context/ScopeContext.html" title="interface in org.apache.tuscany.core.context">ScopeContext</A>&nbsp;targetScopeContext)</CODE>

<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Finishes processing the target side wire chain.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>&nbsp;void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../../org/apache/tuscany/core/context/impl/AbstractCompositeContext.html#connect(org.apache.tuscany.core.wire.SourceWireFactory, org.apache.tuscany.core.wire.TargetWireFactory, java.lang.Class, boolean, org.apache.tuscany.core.context.ScopeContext)">connect</A></B>(<A HREF="../../../../../../org/apache/tuscany/core/wire/SourceWireFactory.html" title="interface in org.apache.tuscany.core.wire">SourceWireFactory</A>&nbsp;sourceFactory,
        <A HREF="../../../../../../org/apache/tuscany/core/wire/TargetWireFactory.html" title="interface in org.apache.tuscany.core.wire">TargetWireFactory</A>&nbsp;targetFactory,
        java.lang.Class&nbsp;targetType,
        boolean&nbsp;downScope,
        <A HREF="../../../../../../org/apache/tuscany/core/context/ScopeContext.html" title="interface in org.apache.tuscany.core.context">ScopeContext</A>&nbsp;targetScopeContext)</CODE>

<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Connects wire configurations of the source proxy factory to corresponding ones in the target proxy to
 factory</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>&nbsp;void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../../org/apache/tuscany/core/context/impl/AbstractCompositeContext.html#fireEvent(int, java.lang.Object)">fireEvent</A></B>(int&nbsp;eventType,
          java.lang.Object&nbsp;message)</CODE>

<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>&nbsp;org.apache.tuscany.model.assembly.Composite</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../../org/apache/tuscany/core/context/impl/AbstractCompositeContext.html#getComposite()">getComposite</A></B>()</CODE>

<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns the composite managed by this composite context</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>&nbsp;<A HREF="../../../../../../org/apache/tuscany/core/context/Context.html" title="interface in org.apache.tuscany.core.context">Context</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../../org/apache/tuscany/core/context/impl/AbstractCompositeContext.html#getContext(java.lang.String)">getContext</A></B>(java.lang.String&nbsp;componentName)</CODE>

<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns the child context associated with a given name</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>&nbsp;java.lang.Object</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../../org/apache/tuscany/core/context/impl/AbstractCompositeContext.html#getInstance(org.apache.tuscany.core.context.QualifiedName)">getInstance</A></B>(<A HREF="../../../../../../org/apache/tuscany/core/context/QualifiedName.html" title="class in org.apache.tuscany.core.context">QualifiedName</A>&nbsp;qName)</CODE>

<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns the instance associated with the requested name, which may be in a atomic or composite form.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>&nbsp;<A HREF="../../../../../../org/apache/tuscany/core/context/CompositeContext.html" title="interface in org.apache.tuscany.core.context">CompositeContext</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../../org/apache/tuscany/core/context/impl/AbstractCompositeContext.html#getParent()">getParent</A></B>()</CODE>

<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns the parent context, or null if the context does not have one</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>&nbsp;java.util.Map&lt;org.apache.tuscany.model.assembly.Scope,<A HREF="../../../../../../org/apache/tuscany/core/context/ScopeContext.html" title="interface in org.apache.tuscany.core.context">ScopeContext</A>&gt;</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../../org/apache/tuscany/core/context/impl/AbstractCompositeContext.html#getScopeContexts()">getScopeContexts</A></B>()</CODE>

<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns an immutable collection of scopes keyed by type for the composite context</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>&nbsp;java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../../org/apache/tuscany/core/context/impl/AbstractCompositeContext.html#getURI()">getURI</A></B>()</CODE>

<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>protected &nbsp;void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../../org/apache/tuscany/core/context/impl/AbstractCompositeContext.html#initializeScopes()">initializeScopes</A></B>()</CODE>

<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>protected &nbsp;void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../../org/apache/tuscany/core/context/impl/AbstractCompositeContext.html#initializeWireFactories()">initializeWireFactories</A></B>()</CODE>

<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>&nbsp;void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../../org/apache/tuscany/core/context/impl/AbstractCompositeContext.html#publish(org.apache.tuscany.core.context.event.Event)">publish</A></B>(<A HREF="../../../../../../org/apache/tuscany/core/context/event/Event.html" title="interface in org.apache.tuscany.core.context.event">Event</A>&nbsp;event)</CODE>

<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>protected &nbsp;void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../../org/apache/tuscany/core/context/impl/AbstractCompositeContext.html#registerAutowireExternal(java.lang.Class, java.lang.String, org.apache.tuscany.core.context.ScopeContext)">registerAutowireExternal</A></B>(java.lang.Class&lt;?&gt;&nbsp;interfaze,
                         java.lang.String&nbsp;name,
                         <A HREF="../../../../../../org/apache/tuscany/core/context/ScopeContext.html" title="interface in org.apache.tuscany.core.context">ScopeContext</A>&nbsp;scopeContext)</CODE>

<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>protected &nbsp;void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../../org/apache/tuscany/core/context/impl/AbstractCompositeContext.html#registerAutowireInternal(java.lang.Class, java.lang.String, org.apache.tuscany.core.context.ScopeContext)">registerAutowireInternal</A></B>(java.lang.Class&lt;?&gt;&nbsp;interfaze,
                         java.lang.String&nbsp;name,
                         <A HREF="../../../../../../org/apache/tuscany/core/context/ScopeContext.html" title="interface in org.apache.tuscany.core.context">ScopeContext</A>&nbsp;scopeContext)</CODE>

<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>protected &nbsp;void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../../org/apache/tuscany/core/context/impl/AbstractCompositeContext.html#registerConfiguration(org.apache.tuscany.core.builder.ContextFactory)">registerConfiguration</A></B>(<A HREF="../../../../../../org/apache/tuscany/core/builder/ContextFactory.html" title="interface in org.apache.tuscany.core.builder">ContextFactory</A>&lt;<A HREF="../../../../../../org/apache/tuscany/core/context/Context.html" title="interface in org.apache.tuscany.core.context">Context</A>&gt;&nbsp;factory)</CODE>

<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>&nbsp;void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../../org/apache/tuscany/core/context/impl/AbstractCompositeContext.html#registerModelObject(org.apache.tuscany.model.assembly.Extensible)">registerModelObject</A></B>(org.apache.tuscany.model.assembly.Extensible&nbsp;model)</CODE>

<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Adds a runtime artifact represented by the model object to the composite context by merging it with existing
 artifacts.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>&nbsp;void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../../org/apache/tuscany/core/context/impl/AbstractCompositeContext.html#registerModelObjects(java.util.List)">registerModelObjects</A></B>(java.util.List&lt;? extends org.apache.tuscany.model.assembly.Extensible&gt;&nbsp;models)</CODE>

<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Adds runtime artifacts represented by the set of model objects to the composite context by merging them with
 existing artifacts.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>&nbsp;void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../../org/apache/tuscany/core/context/impl/AbstractCompositeContext.html#removeContext(java.lang.String)">removeContext</A></B>(java.lang.String&nbsp;name)</CODE>

<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="0" SUMMARY="">
<TR ALIGN="right" VALIGN="">
<TD NOWRAP><FONT SIZE="-1">
<CODE>&lt;T&gt; T</CODE></FONT></TD>
</TR>
</TABLE>
</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../../org/apache/tuscany/core/context/impl/AbstractCompositeContext.html#resolveExternalInstance(java.lang.Class)">resolveExternalInstance</A></B>(java.lang.Class&lt;T&gt;&nbsp;instanceInterface)</CODE>

<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Invoked by a parent context to return an autowire target in a child.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="0" SUMMARY="">
<TR ALIGN="right" VALIGN="">
<TD NOWRAP><FONT SIZE="-1">
<CODE>&lt;T&gt; T</CODE></FONT></TD>
</TR>
</TABLE>
</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../../org/apache/tuscany/core/context/impl/AbstractCompositeContext.html#resolveInstance(java.lang.Class)">resolveInstance</A></B>(java.lang.Class&lt;T&gt;&nbsp;instanceInterface)</CODE>

<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Invoked by child contexts to return an an autowire target.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>&nbsp;void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../../org/apache/tuscany/core/context/impl/AbstractCompositeContext.html#setAssemblyContext(org.apache.tuscany.model.assembly.AssemblyContext)">setAssemblyContext</A></B>(org.apache.tuscany.model.assembly.AssemblyContext&nbsp;assemblyContext)</CODE>

<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;TODO remove this method</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>&nbsp;void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../../org/apache/tuscany/core/context/impl/AbstractCompositeContext.html#setAutowireContext(org.apache.tuscany.core.context.AutowireContext)">setAutowireContext</A></B>(<A HREF="../../../../../../org/apache/tuscany/core/context/AutowireContext.html" title="interface in org.apache.tuscany.core.context">AutowireContext</A>&nbsp;context)</CODE>

<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>&nbsp;void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../../org/apache/tuscany/core/context/impl/AbstractCompositeContext.html#setConfigurationContext(org.apache.tuscany.core.context.ConfigurationContext)">setConfigurationContext</A></B>(<A HREF="../../../../../../org/apache/tuscany/core/context/ConfigurationContext.html" title="interface in org.apache.tuscany.core.context">ConfigurationContext</A>&nbsp;context)</CODE>

<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>&nbsp;void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../../org/apache/tuscany/core/context/impl/AbstractCompositeContext.html#setEventContext(org.apache.tuscany.core.context.EventContext)">setEventContext</A></B>(<A HREF="../../../../../../org/apache/tuscany/core/context/EventContext.html" title="interface in org.apache.tuscany.core.context">EventContext</A>&nbsp;eventContext)</CODE>

<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>&nbsp;void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../../org/apache/tuscany/core/context/impl/AbstractCompositeContext.html#setModule(org.apache.tuscany.model.assembly.Module)">setModule</A></B>(org.apache.tuscany.model.assembly.Module&nbsp;module)</CODE>

<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>&nbsp;void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../../org/apache/tuscany/core/context/impl/AbstractCompositeContext.html#setParent(org.apache.tuscany.core.context.CompositeContext)">setParent</A></B>(<A HREF="../../../../../../org/apache/tuscany/core/context/CompositeContext.html" title="interface in org.apache.tuscany.core.context">CompositeContext</A>&nbsp;parent)</CODE>

<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Sets the parent context</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>&nbsp;void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../../org/apache/tuscany/core/context/impl/AbstractCompositeContext.html#setURI(java.lang.String)">setURI</A></B>(java.lang.String&nbsp;uri)</CODE>

<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>&nbsp;void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../../org/apache/tuscany/core/context/impl/AbstractCompositeContext.html#start()">start</A></B>()</CODE>

<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Starts the Lifecycle.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>&nbsp;void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../../org/apache/tuscany/core/context/impl/AbstractCompositeContext.html#stop()">stop</A></B>()</CODE>

<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Stops the Lifecycle.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>protected &nbsp;void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../../org/apache/tuscany/core/context/impl/AbstractCompositeContext.html#wireSource(org.apache.tuscany.core.builder.ContextFactory)">wireSource</A></B>(<A HREF="../../../../../../org/apache/tuscany/core/builder/ContextFactory.html" title="interface in org.apache.tuscany.core.builder">ContextFactory</A>&lt;<A HREF="../../../../../../org/apache/tuscany/core/context/Context.html" title="interface in org.apache.tuscany.core.context">Context</A>&gt;&nbsp;source)</CODE>

<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Iterates through references and delegates to the configuration context to wire them to their targets</TD>
</TR>
</TABLE>
&nbsp;<A NAME="methods_inherited_from_class_org.apache.tuscany.core.context.impl.AbstractLifecycle"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left"><B>Methods inherited from class org.apache.tuscany.core.context.impl.<A HREF="../../../../../../org/apache/tuscany/core/context/impl/AbstractLifecycle.html" title="class in org.apache.tuscany.core.context.impl">AbstractLifecycle</A></B></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE><A HREF="../../../../../../org/apache/tuscany/core/context/impl/AbstractLifecycle.html#addListener(org.apache.tuscany.core.context.EventFilter, org.apache.tuscany.core.context.RuntimeEventListener)">addListener</A>, <A HREF="../../../../../../org/apache/tuscany/core/context/impl/AbstractLifecycle.html#addListener(org.apache.tuscany.core.context.RuntimeEventListener)">addListener</A>, <A HREF="../../../../../../org/apache/tuscany/core/context/impl/AbstractLifecycle.html#getLifecycleState()">getLifecycleState</A>, <A HREF="../../../../../../org/apache/tuscany/core/context/impl/AbstractLifecycle.html#getListeners()">getListeners</A>, <A HREF="../../../../../../org/apache/tuscany/core/context/impl/AbstractLifecycle.html#getName()">getName</A>, <A HREF="../../../../../../org/apache/tuscany/core/context/impl/AbstractLifecycle.html#removeListener(org.apache.tuscany.core.context.RuntimeEventListener)">removeListener</A>, <A HREF="../../../../../../org/apache/tuscany/core/context/impl/AbstractLifecycle.html#setName(java.lang.String)">setName</A>, <A HREF="../../../../../../org/apache/tuscany/core/context/impl/AbstractLifecycle.html#toString()">toString</A></CODE></TD>
</TR>
</TABLE>
&nbsp;<A NAME="methods_inherited_from_class_java.lang.Object"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left"><B>Methods inherited from class java.lang.Object</B></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE>clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait</CODE></TD>
</TR>
</TABLE>
&nbsp;<A NAME="methods_inherited_from_class_org.apache.tuscany.core.context.EventPublisher"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left"><B>Methods inherited from interface org.apache.tuscany.core.context.<A HREF="../../../../../../org/apache/tuscany/core/context/EventPublisher.html" title="interface in org.apache.tuscany.core.context">EventPublisher</A></B></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE><A HREF="../../../../../../org/apache/tuscany/core/context/EventPublisher.html#addListener(org.apache.tuscany.core.context.EventFilter, org.apache.tuscany.core.context.RuntimeEventListener)">addListener</A>, <A HREF="../../../../../../org/apache/tuscany/core/context/EventPublisher.html#addListener(org.apache.tuscany.core.context.RuntimeEventListener)">addListener</A>, <A HREF="../../../../../../org/apache/tuscany/core/context/EventPublisher.html#removeListener(org.apache.tuscany.core.context.RuntimeEventListener)">removeListener</A></CODE></TD>
</TR>
</TABLE>
&nbsp;<A NAME="methods_inherited_from_class_org.apache.tuscany.core.context.Lifecycle"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left"><B>Methods inherited from interface org.apache.tuscany.core.context.<A HREF="../../../../../../org/apache/tuscany/core/context/Lifecycle.html" title="interface in org.apache.tuscany.core.context">Lifecycle</A></B></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE><A HREF="../../../../../../org/apache/tuscany/core/context/Lifecycle.html#getLifecycleState()">getLifecycleState</A>, <A HREF="../../../../../../org/apache/tuscany/core/context/Lifecycle.html#getName()">getName</A>, <A HREF="../../../../../../org/apache/tuscany/core/context/Lifecycle.html#setName(java.lang.String)">setName</A></CODE></TD>
</TR>
</TABLE>
&nbsp;<A NAME="methods_inherited_from_class_org.apache.tuscany.core.context.EventPublisher"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left"><B>Methods inherited from interface org.apache.tuscany.core.context.<A HREF="../../../../../../org/apache/tuscany/core/context/EventPublisher.html" title="interface in org.apache.tuscany.core.context">EventPublisher</A></B></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE><A HREF="../../../../../../org/apache/tuscany/core/context/EventPublisher.html#addListener(org.apache.tuscany.core.context.EventFilter, org.apache.tuscany.core.context.RuntimeEventListener)">addListener</A>, <A HREF="../../../../../../org/apache/tuscany/core/context/EventPublisher.html#addListener(org.apache.tuscany.core.context.RuntimeEventListener)">addListener</A>, <A HREF="../../../../../../org/apache/tuscany/core/context/EventPublisher.html#removeListener(org.apache.tuscany.core.context.RuntimeEventListener)">removeListener</A></CODE></TD>
</TR>
</TABLE>
&nbsp;<A NAME="methods_inherited_from_class_org.apache.tuscany.core.context.Lifecycle"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left"><B>Methods inherited from interface org.apache.tuscany.core.context.<A HREF="../../../../../../org/apache/tuscany/core/context/Lifecycle.html" title="interface in org.apache.tuscany.core.context">Lifecycle</A></B></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE><A HREF="../../../../../../org/apache/tuscany/core/context/Lifecycle.html#getLifecycleState()">getLifecycleState</A>, <A HREF="../../../../../../org/apache/tuscany/core/context/Lifecycle.html#getName()">getName</A>, <A HREF="../../../../../../org/apache/tuscany/core/context/Lifecycle.html#setName(java.lang.String)">setName</A></CODE></TD>
</TR>
</TABLE>
&nbsp;
<P>

<!-- ============ FIELD DETAIL =========== -->

<A NAME="field_detail"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
<B>Field Detail</B></FONT></TH>
</TR>
</TABLE>

<A NAME="DEFAULT_WAIT"><!-- --></A><H3>
DEFAULT_WAIT</H3>
<PRE>
public static final int <B>DEFAULT_WAIT</B></PRE>
<DL>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../../../constant-values.html#org.apache.tuscany.core.context.impl.AbstractCompositeContext.DEFAULT_WAIT">Constant Field Values</A></DL>
</DL>
<HR>

<A NAME="assemblyContext"><!-- --></A><H3>
assemblyContext</H3>
<PRE>
protected org.apache.tuscany.model.assembly.AssemblyContext <B>assemblyContext</B></PRE>
<DL>
<DL>
</DL>
</DL>
<HR>

<A NAME="parentContext"><!-- --></A><H3>
parentContext</H3>
<PRE>
protected <A HREF="../../../../../../org/apache/tuscany/core/context/CompositeContext.html" title="interface in org.apache.tuscany.core.context">CompositeContext</A> <B>parentContext</B></PRE>
<DL>
<DL>
</DL>
</DL>
<HR>

<A NAME="configurationContext"><!-- --></A><H3>
configurationContext</H3>
<PRE>
protected <A HREF="../../../../../../org/apache/tuscany/core/context/ConfigurationContext.html" title="interface in org.apache.tuscany.core.context">ConfigurationContext</A> <B>configurationContext</B></PRE>
<DL>
<DL>
</DL>
</DL>
<HR>

<A NAME="module"><!-- --></A><H3>
module</H3>
<PRE>
protected org.apache.tuscany.model.assembly.Module <B>module</B></PRE>
<DL>
<DL>
</DL>
</DL>
<HR>

<A NAME="configurations"><!-- --></A><H3>
configurations</H3>
<PRE>
protected java.util.Map&lt;java.lang.String,<A HREF="../../../../../../org/apache/tuscany/core/builder/ContextFactory.html" title="interface in org.apache.tuscany.core.builder">ContextFactory</A>&lt;<A HREF="../../../../../../org/apache/tuscany/core/context/Context.html" title="interface in org.apache.tuscany.core.context">Context</A>&gt;&gt; <B>configurations</B></PRE>
<DL>
<DL>
</DL>
</DL>
<HR>

<A NAME="scopeStrategy"><!-- --></A><H3>
scopeStrategy</H3>
<PRE>
protected <A HREF="../../../../../../org/apache/tuscany/core/context/ScopeStrategy.html" title="interface in org.apache.tuscany.core.context">ScopeStrategy</A> <B>scopeStrategy</B></PRE>
<DL>
<DL>
</DL>
</DL>
<HR>

<A NAME="eventContext"><!-- --></A><H3>
eventContext</H3>
<PRE>
protected <A HREF="../../../../../../org/apache/tuscany/core/context/EventContext.html" title="interface in org.apache.tuscany.core.context">EventContext</A> <B>eventContext</B></PRE>
<DL>
<DL>
</DL>
</DL>
<HR>

<A NAME="scopeContexts"><!-- --></A><H3>
scopeContexts</H3>
<PRE>
protected java.util.Map&lt;org.apache.tuscany.model.assembly.Scope,<A HREF="../../../../../../org/apache/tuscany/core/context/ScopeContext.html" title="interface in org.apache.tuscany.core.context">ScopeContext</A>&gt; <B>scopeContexts</B></PRE>
<DL>
<DL>
</DL>
</DL>
<HR>

<A NAME="immutableScopeContexts"><!-- --></A><H3>
immutableScopeContexts</H3>
<PRE>
protected java.util.Map&lt;org.apache.tuscany.model.assembly.Scope,<A HREF="../../../../../../org/apache/tuscany/core/context/ScopeContext.html" title="interface in org.apache.tuscany.core.context">ScopeContext</A>&gt; <B>immutableScopeContexts</B></PRE>
<DL>
<DL>
</DL>
</DL>
<HR>

<A NAME="scopeIndex"><!-- --></A><H3>
scopeIndex</H3>
<PRE>
protected java.util.Map&lt;java.lang.String,<A HREF="../../../../../../org/apache/tuscany/core/context/ScopeContext.html" title="interface in org.apache.tuscany.core.context">ScopeContext</A>&gt; <B>scopeIndex</B></PRE>
<DL>
<DL>
</DL>
</DL>
<HR>

<A NAME="initializeLatch"><!-- --></A><H3>
initializeLatch</H3>
<PRE>
protected java.util.concurrent.CountDownLatch <B>initializeLatch</B></PRE>
<DL>
<DL>
</DL>
</DL>
<HR>

<A NAME="lock"><!-- --></A><H3>
lock</H3>
<PRE>
protected final java.lang.Object <B>lock</B></PRE>
<DL>
<DL>
</DL>
</DL>
<HR>

<A NAME="initialized"><!-- --></A><H3>
initialized</H3>
<PRE>
protected boolean <B>initialized</B></PRE>
<DL>
<DL>
</DL>
</DL>

<!-- ========= CONSTRUCTOR DETAIL ======== -->

<A NAME="constructor_detail"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
<B>Constructor Detail</B></FONT></TH>
</TR>
</TABLE>

<A NAME="AbstractCompositeContext()"><!-- --></A><H3>
AbstractCompositeContext</H3>
<PRE>
public <B>AbstractCompositeContext</B>()</PRE>
<DL>
</DL>
<HR>

<A NAME="AbstractCompositeContext(java.lang.String, org.apache.tuscany.core.context.CompositeContext, org.apache.tuscany.core.context.ScopeStrategy, org.apache.tuscany.core.context.EventContext, org.apache.tuscany.core.context.ConfigurationContext)"><!-- --></A><H3>
AbstractCompositeContext</H3>
<PRE>
public <B>AbstractCompositeContext</B>(java.lang.String&nbsp;name,
                                <A HREF="../../../../../../org/apache/tuscany/core/context/CompositeContext.html" title="interface in org.apache.tuscany.core.context">CompositeContext</A>&nbsp;parent,
                                <A HREF="../../../../../../org/apache/tuscany/core/context/ScopeStrategy.html" title="interface in org.apache.tuscany.core.context">ScopeStrategy</A>&nbsp;strategy,
                                <A HREF="../../../../../../org/apache/tuscany/core/context/EventContext.html" title="interface in org.apache.tuscany.core.context">EventContext</A>&nbsp;ctx,
                                <A HREF="../../../../../../org/apache/tuscany/core/context/ConfigurationContext.html" title="interface in org.apache.tuscany.core.context">ConfigurationContext</A>&nbsp;configCtx)</PRE>
<DL>
</DL>

<!-- ============ METHOD DETAIL ========== -->

<A NAME="method_detail"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
<B>Method Detail</B></FONT></TH>
</TR>
</TABLE>

<A NAME="setAssemblyContext(org.apache.tuscany.model.assembly.AssemblyContext)"><!-- --></A><H3>
setAssemblyContext</H3>
<PRE>
public void <B>setAssemblyContext</B>(org.apache.tuscany.model.assembly.AssemblyContext&nbsp;assemblyContext)</PRE>
<DL>
<DD><B>Description copied from interface: <CODE><A HREF="../../../../../../org/apache/tuscany/core/context/CompositeContext.html#setAssemblyContext(org.apache.tuscany.model.assembly.AssemblyContext)">CompositeContext</A></CODE></B></DD>
<DD>TODO remove this method
<P>
<DD><DL>
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../../../org/apache/tuscany/core/context/CompositeContext.html#setAssemblyContext(org.apache.tuscany.model.assembly.AssemblyContext)">setAssemblyContext</A></CODE> in interface <CODE><A HREF="../../../../../../org/apache/tuscany/core/context/CompositeContext.html" title="interface in org.apache.tuscany.core.context">CompositeContext</A></CODE></DL>
</DD>
<DD><DL>
</DL>
</DD>
</DL>
<HR>

<A NAME="getURI()"><!-- --></A><H3>
getURI</H3>
<PRE>
public java.lang.String <B>getURI</B>()</PRE>
<DL>
<DD><DL>
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../../../org/apache/tuscany/core/context/CompositeContext.html#getURI()">getURI</A></CODE> in interface <CODE><A HREF="../../../../../../org/apache/tuscany/core/context/CompositeContext.html" title="interface in org.apache.tuscany.core.context">CompositeContext</A></CODE></DL>
</DD>
<DD><DL>
</DL>
</DD>
</DL>
<HR>

<A NAME="setURI(java.lang.String)"><!-- --></A><H3>
setURI</H3>
<PRE>
public void <B>setURI</B>(java.lang.String&nbsp;uri)</PRE>
<DL>
<DD><DL>
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../../../org/apache/tuscany/core/context/CompositeContext.html#setURI(java.lang.String)">setURI</A></CODE> in interface <CODE><A HREF="../../../../../../org/apache/tuscany/core/context/CompositeContext.html" title="interface in org.apache.tuscany.core.context">CompositeContext</A></CODE></DL>
</DD>
<DD><DL>
</DL>
</DD>
</DL>
<HR>

<A NAME="start()"><!-- --></A><H3>
start</H3>
<PRE>
public void <B>start</B>()</PRE>
<DL>
<DD><B>Description copied from interface: <CODE><A HREF="../../../../../../org/apache/tuscany/core/context/Lifecycle.html#start()">Lifecycle</A></CODE></B></DD>
<DD>Starts the Lifecycle.
<P>
<DD><DL>
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../../../org/apache/tuscany/core/context/Lifecycle.html#start()">start</A></CODE> in interface <CODE><A HREF="../../../../../../org/apache/tuscany/core/context/Lifecycle.html" title="interface in org.apache.tuscany.core.context">Lifecycle</A></CODE></DL>
</DD>
<DD><DL>
</DL>
</DD>
</DL>
<HR>

<A NAME="stop()"><!-- --></A><H3>
stop</H3>
<PRE>
public void <B>stop</B>()</PRE>
<DL>
<DD><B>Description copied from interface: <CODE><A HREF="../../../../../../org/apache/tuscany/core/context/Lifecycle.html#stop()">Lifecycle</A></CODE></B></DD>
<DD>Stops the Lifecycle.
<P>
<DD><DL>
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../../../org/apache/tuscany/core/context/Lifecycle.html#stop()">stop</A></CODE> in interface <CODE><A HREF="../../../../../../org/apache/tuscany/core/context/Lifecycle.html" title="interface in org.apache.tuscany.core.context">Lifecycle</A></CODE></DL>
</DD>
<DD><DL>
</DL>
</DD>
</DL>
<HR>

<A NAME="setModule(org.apache.tuscany.model.assembly.Module)"><!-- --></A><H3>
setModule</H3>
<PRE>
public void <B>setModule</B>(org.apache.tuscany.model.assembly.Module&nbsp;module)</PRE>
<DL>
<DD><DL>
</DL>
</DD>
<DD><DL>
</DL>
</DD>
</DL>
<HR>

<A NAME="setEventContext(org.apache.tuscany.core.context.EventContext)"><!-- --></A><H3>
setEventContext</H3>
<PRE>
public void <B>setEventContext</B>(<A HREF="../../../../../../org/apache/tuscany/core/context/EventContext.html" title="interface in org.apache.tuscany.core.context">EventContext</A>&nbsp;eventContext)</PRE>
<DL>
<DD><DL>
</DL>
</DD>
<DD><DL>
</DL>
</DD>
</DL>
<HR>

<A NAME="setConfigurationContext(org.apache.tuscany.core.context.ConfigurationContext)"><!-- --></A><H3>
setConfigurationContext</H3>
<PRE>
public void <B>setConfigurationContext</B>(<A HREF="../../../../../../org/apache/tuscany/core/context/ConfigurationContext.html" title="interface in org.apache.tuscany.core.context">ConfigurationContext</A>&nbsp;context)</PRE>
<DL>
<DD><DL>
</DL>
</DD>
<DD><DL>
</DL>
</DD>
</DL>
<HR>

<A NAME="getParent()"><!-- --></A><H3>
getParent</H3>
<PRE>
public <A HREF="../../../../../../org/apache/tuscany/core/context/CompositeContext.html" title="interface in org.apache.tuscany.core.context">CompositeContext</A> <B>getParent</B>()</PRE>
<DL>
<DD><B>Description copied from interface: <CODE><A HREF="../../../../../../org/apache/tuscany/core/context/CompositeContext.html#getParent()">CompositeContext</A></CODE></B></DD>
<DD>Returns the parent context, or null if the context does not have one
<P>
<DD><DL>
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../../../org/apache/tuscany/core/context/CompositeContext.html#getParent()">getParent</A></CODE> in interface <CODE><A HREF="../../../../../../org/apache/tuscany/core/context/CompositeContext.html" title="interface in org.apache.tuscany.core.context">CompositeContext</A></CODE></DL>
</DD>
<DD><DL>
</DL>
</DD>
</DL>
<HR>

<A NAME="setParent(org.apache.tuscany.core.context.CompositeContext)"><!-- --></A><H3>
setParent</H3>
<PRE>
public void <B>setParent</B>(<A HREF="../../../../../../org/apache/tuscany/core/context/CompositeContext.html" title="interface in org.apache.tuscany.core.context">CompositeContext</A>&nbsp;parent)</PRE>
<DL>
<DD><B>Description copied from interface: <CODE><A HREF="../../../../../../org/apache/tuscany/core/context/CompositeContext.html#setParent(org.apache.tuscany.core.context.CompositeContext)">CompositeContext</A></CODE></B></DD>
<DD>Sets the parent context
<P>
<DD><DL>
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../../../org/apache/tuscany/core/context/CompositeContext.html#setParent(org.apache.tuscany.core.context.CompositeContext)">setParent</A></CODE> in interface <CODE><A HREF="../../../../../../org/apache/tuscany/core/context/CompositeContext.html" title="interface in org.apache.tuscany.core.context">CompositeContext</A></CODE></DL>
</DD>
<DD><DL>
</DL>
</DD>
</DL>
<HR>

<A NAME="registerModelObjects(java.util.List)"><!-- --></A><H3>
registerModelObjects</H3>
<PRE>
public void <B>registerModelObjects</B>(java.util.List&lt;? extends org.apache.tuscany.model.assembly.Extensible&gt;&nbsp;models)
                          throws <A HREF="../../../../../../org/apache/tuscany/core/config/ConfigurationException.html" title="class in org.apache.tuscany.core.config">ConfigurationException</A></PRE>
<DL>
<DD><B>Description copied from interface: <CODE><A HREF="../../../../../../org/apache/tuscany/core/context/CompositeContext.html#registerModelObjects(java.util.List)">CompositeContext</A></CODE></B></DD>
<DD>Adds runtime artifacts represented by the set of model objects to the composite context by merging them with
 existing artifacts. Implementing classes may support only a subset of <CODE>Part</CODE> types.
<P>
<DD><DL>
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../../../org/apache/tuscany/core/context/CompositeContext.html#registerModelObjects(java.util.List)">registerModelObjects</A></CODE> in interface <CODE><A HREF="../../../../../../org/apache/tuscany/core/context/CompositeContext.html" title="interface in org.apache.tuscany.core.context">CompositeContext</A></CODE></DL>
</DD>
<DD><DL>

<DT><B>Throws:</B>
<DD><CODE><A HREF="../../../../../../org/apache/tuscany/core/config/ConfigurationException.html" title="class in org.apache.tuscany.core.config">ConfigurationException</A></CODE><DT><B>See Also:</B><DD><CODE>Component</CODE>, 
<CODE>ModuleComponent</CODE>, 
<CODE>AtomicComponent</CODE>, 
<CODE>EntryPoint</CODE>, 
<CODE>ExternalService</CODE></DL>
</DD>
</DL>
<HR>

<A NAME="registerModelObject(org.apache.tuscany.model.assembly.Extensible)"><!-- --></A><H3>
registerModelObject</H3>
<PRE>
public void <B>registerModelObject</B>(org.apache.tuscany.model.assembly.Extensible&nbsp;model)
                         throws <A HREF="../../../../../../org/apache/tuscany/core/config/ConfigurationException.html" title="class in org.apache.tuscany.core.config">ConfigurationException</A></PRE>
<DL>
<DD><B>Description copied from interface: <CODE><A HREF="../../../../../../org/apache/tuscany/core/context/CompositeContext.html#registerModelObject(org.apache.tuscany.model.assembly.Extensible)">CompositeContext</A></CODE></B></DD>
<DD>Adds a runtime artifact represented by the model object to the composite context by merging it with existing
 artifacts. Implementing classes may support only a subset of <CODE>Part</CODE> types.
<P>
<DD><DL>
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../../../org/apache/tuscany/core/context/CompositeContext.html#registerModelObject(org.apache.tuscany.model.assembly.Extensible)">registerModelObject</A></CODE> in interface <CODE><A HREF="../../../../../../org/apache/tuscany/core/context/CompositeContext.html" title="interface in org.apache.tuscany.core.context">CompositeContext</A></CODE></DL>
</DD>
<DD><DL>

<DT><B>Throws:</B>
<DD><CODE><A HREF="../../../../../../org/apache/tuscany/core/config/ConfigurationException.html" title="class in org.apache.tuscany.core.config">ConfigurationException</A></CODE><DT><B>See Also:</B><DD><CODE>Component</CODE>, 
<CODE>ModuleComponent</CODE>, 
<CODE>AtomicComponent</CODE>, 
<CODE>EntryPoint</CODE>, 
<CODE>ExternalService</CODE></DL>
</DD>
</DL>
<HR>

<A NAME="registerConfiguration(org.apache.tuscany.core.builder.ContextFactory)"><!-- --></A><H3>
registerConfiguration</H3>
<PRE>
protected void <B>registerConfiguration</B>(<A HREF="../../../../../../org/apache/tuscany/core/builder/ContextFactory.html" title="interface in org.apache.tuscany.core.builder">ContextFactory</A>&lt;<A HREF="../../../../../../org/apache/tuscany/core/context/Context.html" title="interface in org.apache.tuscany.core.context">Context</A>&gt;&nbsp;factory)
                              throws <A HREF="../../../../../../org/apache/tuscany/core/config/ConfigurationException.html" title="class in org.apache.tuscany.core.config">ConfigurationException</A></PRE>
<DL>
<DD><DL>
</DL>
</DD>
<DD><DL>

<DT><B>Throws:</B>
<DD><CODE><A HREF="../../../../../../org/apache/tuscany/core/config/ConfigurationException.html" title="class in org.apache.tuscany.core.config">ConfigurationException</A></CODE></DL>
</DD>
</DL>
<HR>

<A NAME="fireEvent(int, java.lang.Object)"><!-- --></A><H3>
fireEvent</H3>
<PRE>
public void <B>fireEvent</B>(int&nbsp;eventType,
                      java.lang.Object&nbsp;message)
               throws <A HREF="../../../../../../org/apache/tuscany/core/context/EventException.html" title="class in org.apache.tuscany.core.context">EventException</A></PRE>
<DL>
<DD><DL>
</DL>
</DD>
<DD><DL>

<DT><B>Throws:</B>
<DD><CODE><A HREF="../../../../../../org/apache/tuscany/core/context/EventException.html" title="class in org.apache.tuscany.core.context">EventException</A></CODE></DL>
</DD>
</DL>
<HR>

<A NAME="publish(org.apache.tuscany.core.context.event.Event)"><!-- --></A><H3>
publish</H3>
<PRE>
public void <B>publish</B>(<A HREF="../../../../../../org/apache/tuscany/core/context/event/Event.html" title="interface in org.apache.tuscany.core.context.event">Event</A>&nbsp;event)</PRE>
<DL>
<DD><DL>
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../../../org/apache/tuscany/core/context/EventPublisher.html#publish(org.apache.tuscany.core.context.event.Event)">publish</A></CODE> in interface <CODE><A HREF="../../../../../../org/apache/tuscany/core/context/EventPublisher.html" title="interface in org.apache.tuscany.core.context">EventPublisher</A></CODE><DT><B>Overrides:</B><DD><CODE><A HREF="../../../../../../org/apache/tuscany/core/context/impl/AbstractLifecycle.html#publish(org.apache.tuscany.core.context.event.Event)">publish</A></CODE> in class <CODE><A HREF="../../../../../../org/apache/tuscany/core/context/impl/AbstractLifecycle.html" title="class in org.apache.tuscany.core.context.impl">AbstractLifecycle</A></CODE></DL>
</DD>
<DD><DL>
</DL>
</DD>
</DL>
<HR>

<A NAME="getContext(java.lang.String)"><!-- --></A><H3>
getContext</H3>
<PRE>
public <A HREF="../../../../../../org/apache/tuscany/core/context/Context.html" title="interface in org.apache.tuscany.core.context">Context</A> <B>getContext</B>(java.lang.String&nbsp;componentName)</PRE>
<DL>
<DD><B>Description copied from interface: <CODE><A HREF="../../../../../../org/apache/tuscany/core/context/CompositeContext.html#getContext(java.lang.String)">CompositeContext</A></CODE></B></DD>
<DD>Returns the child context associated with a given name
<P>
<DD><DL>
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../../../org/apache/tuscany/core/context/CompositeContext.html#getContext(java.lang.String)">getContext</A></CODE> in interface <CODE><A HREF="../../../../../../org/apache/tuscany/core/context/CompositeContext.html" title="interface in org.apache.tuscany.core.context">CompositeContext</A></CODE></DL>
</DD>
<DD><DL>
</DL>
</DD>
</DL>
<HR>

<A NAME="getInstance(org.apache.tuscany.core.context.QualifiedName)"><!-- --></A><H3>
getInstance</H3>
<PRE>
public java.lang.Object <B>getInstance</B>(<A HREF="../../../../../../org/apache/tuscany/core/context/QualifiedName.html" title="class in org.apache.tuscany.core.context">QualifiedName</A>&nbsp;qName)
                             throws <A HREF="../../../../../../org/apache/tuscany/core/context/TargetException.html" title="class in org.apache.tuscany.core.context">TargetException</A></PRE>
<DL>
<DD><B>Description copied from interface: <CODE><A HREF="../../../../../../org/apache/tuscany/core/context/Context.html#getInstance(org.apache.tuscany.core.context.QualifiedName)">Context</A></CODE></B></DD>
<DD>Returns the instance associated with the requested name, which may be in a atomic or composite form. Atomic (i.e.
 leaf) contexts will return an instance associated with the service name part of the compound name, which may be
 null.
 <p/>
 Composite contexts will return an instance (likely a proxy) of a contained entry point context. In this case, the
 port name on the qualified name will correspond to the composite context name and the part name will be used to
 retrieve the contained entry point context. The latter may be null. If the contained context is not an entry
 point context, an exception will be thrown.
<P>
<DD><DL>
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../../../org/apache/tuscany/core/context/Context.html#getInstance(org.apache.tuscany.core.context.QualifiedName)">getInstance</A></CODE> in interface <CODE><A HREF="../../../../../../org/apache/tuscany/core/context/Context.html" title="interface in org.apache.tuscany.core.context">Context</A></CODE></DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>qName</CODE> - a qualified name of the requested instance
<DT><B>Returns:</B><DD>the implementation instance or a proxy to it
<DT><B>Throws:</B>
<DD><CODE><A HREF="../../../../../../org/apache/tuscany/core/context/TargetException.html" title="class in org.apache.tuscany.core.context">TargetException</A></CODE> - if an error occurs retrieving the instance or the requested component is not an entry
          point.<DT><B>See Also:</B><DD><A HREF="../../../../../../org/apache/tuscany/core/context/CompositeContext.html" title="interface in org.apache.tuscany.core.context"><CODE>CompositeContext</CODE></A>, 
<CODE>EntryPoint</CODE></DL>
</DD>
</DL>
<HR>

<A NAME="getScopeContexts()"><!-- --></A><H3>
getScopeContexts</H3>
<PRE>
public java.util.Map&lt;org.apache.tuscany.model.assembly.Scope,<A HREF="../../../../../../org/apache/tuscany/core/context/ScopeContext.html" title="interface in org.apache.tuscany.core.context">ScopeContext</A>&gt; <B>getScopeContexts</B>()</PRE>
<DL>
<DD><B>Description copied from interface: <CODE><A HREF="../../../../../../org/apache/tuscany/core/context/ScopeAwareContext.html#getScopeContexts()">ScopeAwareContext</A></CODE></B></DD>
<DD>Returns an immutable collection of scopes keyed by type for the composite context
<P>
<DD><DL>
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../../../org/apache/tuscany/core/context/ScopeAwareContext.html#getScopeContexts()">getScopeContexts</A></CODE> in interface <CODE><A HREF="../../../../../../org/apache/tuscany/core/context/ScopeAwareContext.html" title="interface in org.apache.tuscany.core.context">ScopeAwareContext</A></CODE></DL>
</DD>
<DD><DL>
</DL>
</DD>
</DL>
<HR>

<A NAME="checkInit()"><!-- --></A><H3>
checkInit</H3>
<PRE>
protected void <B>checkInit</B>()</PRE>
<DL>
<DD>Blocks until the module context has been initialized
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
</DL>
</DD>
</DL>
<HR>

<A NAME="initializeScopes()"><!-- --></A><H3>
initializeScopes</H3>
<PRE>
protected void <B>initializeScopes</B>()</PRE>
<DL>
<DD><DL>
</DL>
</DD>
<DD><DL>
</DL>
</DD>
</DL>
<HR>

<A NAME="wireSource(org.apache.tuscany.core.builder.ContextFactory)"><!-- --></A><H3>
wireSource</H3>
<PRE>
protected void <B>wireSource</B>(<A HREF="../../../../../../org/apache/tuscany/core/builder/ContextFactory.html" title="interface in org.apache.tuscany.core.builder">ContextFactory</A>&lt;<A HREF="../../../../../../org/apache/tuscany/core/context/Context.html" title="interface in org.apache.tuscany.core.context">Context</A>&gt;&nbsp;source)</PRE>
<DL>
<DD>Iterates through references and delegates to the configuration context to wire them to their targets
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
</DL>
</DD>
</DL>
<HR>

<A NAME="buildTarget(org.apache.tuscany.core.builder.ContextFactory)"><!-- --></A><H3>
buildTarget</H3>
<PRE>
protected void <B>buildTarget</B>(<A HREF="../../../../../../org/apache/tuscany/core/builder/ContextFactory.html" title="interface in org.apache.tuscany.core.builder">ContextFactory</A>&lt;?&gt;&nbsp;target)</PRE>
<DL>
<DD>Signals to target side of reference configurations to initialize
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
</DL>
</DD>
</DL>
<HR>

<A NAME="initializeWireFactories()"><!-- --></A><H3>
initializeWireFactories</H3>
<PRE>
protected void <B>initializeWireFactories</B>()
                                throws <A HREF="../../../../../../org/apache/tuscany/core/wire/WireFactoryInitException.html" title="class in org.apache.tuscany.core.wire">WireFactoryInitException</A></PRE>
<DL>
<DD><DL>
</DL>
</DD>
<DD><DL>

<DT><B>Throws:</B>
<DD><CODE><A HREF="../../../../../../org/apache/tuscany/core/wire/WireFactoryInitException.html" title="class in org.apache.tuscany.core.wire">WireFactoryInitException</A></CODE></DL>
</DD>
</DL>
<HR>

<A NAME="getComposite()"><!-- --></A><H3>
getComposite</H3>
<PRE>
public org.apache.tuscany.model.assembly.Composite <B>getComposite</B>()</PRE>
<DL>
<DD><B>Description copied from interface: <CODE><A HREF="../../../../../../org/apache/tuscany/core/context/CompositeContext.html#getComposite()">CompositeContext</A></CODE></B></DD>
<DD>Returns the composite managed by this composite context
<P>
<DD><DL>
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../../../org/apache/tuscany/core/context/CompositeContext.html#getComposite()">getComposite</A></CODE> in interface <CODE><A HREF="../../../../../../org/apache/tuscany/core/context/CompositeContext.html" title="interface in org.apache.tuscany.core.context">CompositeContext</A></CODE></DL>
</DD>
<DD><DL>
</DL>
</DD>
</DL>
<HR>

<A NAME="setAutowireContext(org.apache.tuscany.core.context.AutowireContext)"><!-- --></A><H3>
setAutowireContext</H3>
<PRE>
public void <B>setAutowireContext</B>(<A HREF="../../../../../../org/apache/tuscany/core/context/AutowireContext.html" title="interface in org.apache.tuscany.core.context">AutowireContext</A>&nbsp;context)</PRE>
<DL>
<DD><DL>
</DL>
</DD>
<DD><DL>
</DL>
</DD>
</DL>
<HR>

<A NAME="resolveInstance(java.lang.Class)"><!-- --></A><H3>
resolveInstance</H3>
<PRE>
public &lt;T&gt; T <B>resolveInstance</B>(java.lang.Class&lt;T&gt;&nbsp;instanceInterface)
                  throws <A HREF="../../../../../../org/apache/tuscany/core/context/AutowireResolutionException.html" title="class in org.apache.tuscany.core.context">AutowireResolutionException</A></PRE>
<DL>
<DD><B>Description copied from interface: <CODE><A HREF="../../../../../../org/apache/tuscany/core/context/AutowireContext.html#resolveInstance(java.lang.Class)">AutowireContext</A></CODE></B></DD>
<DD>Invoked by child contexts to return an an autowire target. Resolved targets may be entry points or
 components in the parent or its ancestors, or entry points in a sibling context
<P>
<DD><DL>
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../../../org/apache/tuscany/core/context/AutowireContext.html#resolveInstance(java.lang.Class)">resolveInstance</A></CODE> in interface <CODE><A HREF="../../../../../../org/apache/tuscany/core/context/AutowireContext.html" title="interface in org.apache.tuscany.core.context">AutowireContext</A></CODE></DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>instanceInterface</CODE> - the type of service being requested
<DT><B>Returns:</B><DD>a reference to the requested service or null if none can be found
<DT><B>Throws:</B>
<DD><CODE><A HREF="../../../../../../org/apache/tuscany/core/context/AutowireResolutionException.html" title="class in org.apache.tuscany.core.context">AutowireResolutionException</A></CODE> - if an error occurs attempting to resolve an autowire</DL>
</DD>
</DL>
<HR>

<A NAME="resolveExternalInstance(java.lang.Class)"><!-- --></A><H3>
resolveExternalInstance</H3>
<PRE>
public &lt;T&gt; T <B>resolveExternalInstance</B>(java.lang.Class&lt;T&gt;&nbsp;instanceInterface)
                          throws <A HREF="../../../../../../org/apache/tuscany/core/context/AutowireResolutionException.html" title="class in org.apache.tuscany.core.context">AutowireResolutionException</A></PRE>
<DL>
<DD><B>Description copied from interface: <CODE><A HREF="../../../../../../org/apache/tuscany/core/context/AutowireContext.html#resolveExternalInstance(java.lang.Class)">AutowireContext</A></CODE></B></DD>
<DD>Invoked by a parent context to return an autowire target in a child. Resolved targets must be entry points.
 For example, given a parent P and two siblings, A and B, A would request an autowire by invoking
 <CODE>#resolveInstance(Class<T>)</CODE> on P, which in turn could invoke the present method on B in order to resolve
 a target.
<P>
<DD><DL>
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../../../org/apache/tuscany/core/context/AutowireContext.html#resolveExternalInstance(java.lang.Class)">resolveExternalInstance</A></CODE> in interface <CODE><A HREF="../../../../../../org/apache/tuscany/core/context/AutowireContext.html" title="interface in org.apache.tuscany.core.context">AutowireContext</A></CODE></DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>instanceInterface</CODE> - the type of service being requested
<DT><B>Returns:</B><DD>a reference to the requested service or null if none can be found
<DT><B>Throws:</B>
<DD><CODE><A HREF="../../../../../../org/apache/tuscany/core/context/AutowireResolutionException.html" title="class in org.apache.tuscany.core.context">AutowireResolutionException</A></CODE> - if an error occurs attempting to resolve an autowire</DL>
</DD>
</DL>
<HR>

<A NAME="registerAutowireInternal(java.lang.Class, java.lang.String, org.apache.tuscany.core.context.ScopeContext)"><!-- --></A><H3>
registerAutowireInternal</H3>
<PRE>
protected void <B>registerAutowireInternal</B>(java.lang.Class&lt;?&gt;&nbsp;interfaze,
                                        java.lang.String&nbsp;name,
                                        <A HREF="../../../../../../org/apache/tuscany/core/context/ScopeContext.html" title="interface in org.apache.tuscany.core.context">ScopeContext</A>&nbsp;scopeContext)</PRE>
<DL>
<DD><DL>
</DL>
</DD>
<DD><DL>
</DL>
</DD>
</DL>
<HR>

<A NAME="registerAutowireExternal(java.lang.Class, java.lang.String, org.apache.tuscany.core.context.ScopeContext)"><!-- --></A><H3>
registerAutowireExternal</H3>
<PRE>
protected void <B>registerAutowireExternal</B>(java.lang.Class&lt;?&gt;&nbsp;interfaze,
                                        java.lang.String&nbsp;name,
                                        <A HREF="../../../../../../org/apache/tuscany/core/context/ScopeContext.html" title="interface in org.apache.tuscany.core.context">ScopeContext</A>&nbsp;scopeContext)</PRE>
<DL>
<DD><DL>
</DL>
</DD>
<DD><DL>
</DL>
</DD>
</DL>
<HR>

<A NAME="build(org.apache.tuscany.model.assembly.AssemblyObject)"><!-- --></A><H3>
build</H3>
<PRE>
public void <B>build</B>(org.apache.tuscany.model.assembly.AssemblyObject&nbsp;model)
           throws <A HREF="../../../../../../org/apache/tuscany/core/builder/BuilderConfigException.html" title="class in org.apache.tuscany.core.builder">BuilderConfigException</A></PRE>
<DL>
<DD><B>Description copied from interface: <CODE><A HREF="../../../../../../org/apache/tuscany/core/builder/ContextFactoryBuilder.html#build(org.apache.tuscany.model.assembly.AssemblyObject)">ContextFactoryBuilder</A></CODE></B></DD>
<DD>Creates or updates a context factory based on configuration contained in the given model object. The model object is
 decorated with the factory.
<P>
<DD><DL>
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../../../org/apache/tuscany/core/builder/ContextFactoryBuilder.html#build(org.apache.tuscany.model.assembly.AssemblyObject)">build</A></CODE> in interface <CODE><A HREF="../../../../../../org/apache/tuscany/core/builder/ContextFactoryBuilder.html" title="interface in org.apache.tuscany.core.builder">ContextFactoryBuilder</A></CODE></DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>model</CODE> - the logical configuration model node
<DT><B>Throws:</B>
<DD><CODE><A HREF="../../../../../../org/apache/tuscany/core/builder/BuilderConfigException.html" title="class in org.apache.tuscany.core.builder">BuilderConfigException</A></CODE></DL>
</DD>
</DL>
<HR>

<A NAME="connect(org.apache.tuscany.core.wire.SourceWireFactory, org.apache.tuscany.core.wire.TargetWireFactory, java.lang.Class, boolean, org.apache.tuscany.core.context.ScopeContext)"><!-- --></A><H3>
connect</H3>
<PRE>
public void <B>connect</B>(<A HREF="../../../../../../org/apache/tuscany/core/wire/SourceWireFactory.html" title="interface in org.apache.tuscany.core.wire">SourceWireFactory</A>&nbsp;sourceFactory,
                    <A HREF="../../../../../../org/apache/tuscany/core/wire/TargetWireFactory.html" title="interface in org.apache.tuscany.core.wire">TargetWireFactory</A>&nbsp;targetFactory,
                    java.lang.Class&nbsp;targetType,
                    boolean&nbsp;downScope,
                    <A HREF="../../../../../../org/apache/tuscany/core/context/ScopeContext.html" title="interface in org.apache.tuscany.core.context">ScopeContext</A>&nbsp;targetScopeContext)
             throws <A HREF="../../../../../../org/apache/tuscany/core/builder/BuilderConfigException.html" title="class in org.apache.tuscany.core.builder">BuilderConfigException</A></PRE>
<DL>
<DD><B>Description copied from interface: <CODE><A HREF="../../../../../../org/apache/tuscany/core/builder/WireBuilder.html#connect(org.apache.tuscany.core.wire.SourceWireFactory, org.apache.tuscany.core.wire.TargetWireFactory, java.lang.Class, boolean, org.apache.tuscany.core.context.ScopeContext)">WireBuilder</A></CODE></B></DD>
<DD>Connects wire configurations of the source proxy factory to corresponding ones in the target proxy to
 factory
<P>
<DD><DL>
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../../../org/apache/tuscany/core/builder/WireBuilder.html#connect(org.apache.tuscany.core.wire.SourceWireFactory, org.apache.tuscany.core.wire.TargetWireFactory, java.lang.Class, boolean, org.apache.tuscany.core.context.ScopeContext)">connect</A></CODE> in interface <CODE><A HREF="../../../../../../org/apache/tuscany/core/builder/WireBuilder.html" title="interface in org.apache.tuscany.core.builder">WireBuilder</A></CODE></DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>sourceFactory</CODE> - the proxy factory used in constructing the source side of the wire chain<DD><CODE>targetFactory</CODE> - the proxy factory used in constructing the target side of the wire chain<DD><CODE>targetType</CODE> - the context type of the target. Used to determine if a paricular wire builder should construct
        the wire<DD><CODE>downScope</CODE> - true if the component containing the reference (source side) is of a lesser scope than the
        target service<DD><CODE>targetScopeContext</CODE> - the scope context responsible for managing intance contexts of the target component
        type
<DT><B>Throws:</B>
<DD><CODE><A HREF="../../../../../../org/apache/tuscany/core/builder/BuilderConfigException.html" title="class in org.apache.tuscany.core.builder">BuilderConfigException</A></CODE> - if an error occurs during the wire buildSource process</DL>
</DD>
</DL>
<HR>

<A NAME="completeTargetChain(org.apache.tuscany.core.wire.TargetWireFactory, java.lang.Class, org.apache.tuscany.core.context.ScopeContext)"><!-- --></A><H3>
completeTargetChain</H3>
<PRE>
public void <B>completeTargetChain</B>(<A HREF="../../../../../../org/apache/tuscany/core/wire/TargetWireFactory.html" title="interface in org.apache.tuscany.core.wire">TargetWireFactory</A>&nbsp;targetFactory,
                                java.lang.Class&nbsp;targetType,
                                <A HREF="../../../../../../org/apache/tuscany/core/context/ScopeContext.html" title="interface in org.apache.tuscany.core.context">ScopeContext</A>&nbsp;targetScopeContext)
                         throws <A HREF="../../../../../../org/apache/tuscany/core/builder/BuilderConfigException.html" title="class in org.apache.tuscany.core.builder">BuilderConfigException</A></PRE>
<DL>
<DD><B>Description copied from interface: <CODE><A HREF="../../../../../../org/apache/tuscany/core/builder/WireBuilder.html#completeTargetChain(org.apache.tuscany.core.wire.TargetWireFactory, java.lang.Class, org.apache.tuscany.core.context.ScopeContext)">WireBuilder</A></CODE></B></DD>
<DD>Finishes processing the target side wire chain. For example, a
 <A HREF="../../../../../../org/apache/tuscany/core/wire/TargetInvoker.html" title="interface in org.apache.tuscany.core.wire"><CODE>TargetInvoker</CODE></A> used by target-side proxies is usually set during this
 phase.
<P>
<DD><DL>
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../../../org/apache/tuscany/core/builder/WireBuilder.html#completeTargetChain(org.apache.tuscany.core.wire.TargetWireFactory, java.lang.Class, org.apache.tuscany.core.context.ScopeContext)">completeTargetChain</A></CODE> in interface <CODE><A HREF="../../../../../../org/apache/tuscany/core/builder/WireBuilder.html" title="interface in org.apache.tuscany.core.builder">WireBuilder</A></CODE></DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>targetFactory</CODE> - the target-side proxy factory<DD><CODE>targetType</CODE> - the target context type<DD><CODE>targetScopeContext</CODE> - the target scope
<DT><B>Throws:</B>
<DD><CODE><A HREF="../../../../../../org/apache/tuscany/core/builder/BuilderConfigException.html" title="class in org.apache.tuscany.core.builder">BuilderConfigException</A></CODE> - if an error occurs during the wire buildSource process</DL>
</DD>
</DL>
<HR>

<A NAME="removeContext(java.lang.String)"><!-- --></A><H3>
removeContext</H3>
<PRE>
public void <B>removeContext</B>(java.lang.String&nbsp;name)</PRE>
<DL>
<DD><DL>
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../../../org/apache/tuscany/core/context/CompositeContext.html#removeContext(java.lang.String)">removeContext</A></CODE> in interface <CODE><A HREF="../../../../../../org/apache/tuscany/core/context/CompositeContext.html" title="interface in org.apache.tuscany.core.context">CompositeContext</A></CODE></DL>
</DD>
<DD><DL>
</DL>
</DD>
</DL>
<!-- ========= END OF CLASS DATA ========= -->
<HR>


<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
  <TR ALIGN="center" VALIGN="top">
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD>
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD>
  <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT>&nbsp;</TD>
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="class-use/AbstractCompositeContext.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A>&nbsp;</TD>
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD>
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD>
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD>
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD>
  </TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
Tuscany Core</EM>
</TD>
</TR>

<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
&nbsp;PREV CLASS&nbsp;
&nbsp;<A HREF="../../../../../../org/apache/tuscany/core/context/impl/AbstractCompositeContext.NameToScope.html" title="class in org.apache.tuscany.core.context.impl"><B>NEXT CLASS</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
  <A HREF="../../../../../../index.html?org/apache/tuscany/core/context/impl/AbstractCompositeContext.html" target="_top"><B>FRAMES</B></A>  &nbsp;
&nbsp;<A HREF="AbstractCompositeContext.html" target="_top"><B>NO FRAMES</B></A>  &nbsp;
&nbsp;<SCRIPT type="text/javascript">
  <!--
  if(window==top) {
    document.writeln('<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
  }
  //-->
</SCRIPT>
<NOSCRIPT>
  <A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>


</FONT></TD>
</TR>
<TR>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
  SUMMARY:&nbsp;<A HREF="#nested_class_summary">NESTED</A>&nbsp;|&nbsp;<A HREF="#field_summary">FIELD</A>&nbsp;|&nbsp;<A HREF="#constructor_summary">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_summary">METHOD</A></FONT></TD>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
DETAIL:&nbsp;<A HREF="#field_detail">FIELD</A>&nbsp;|&nbsp;<A HREF="#constructor_detail">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_detail">METHOD</A></FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_bottom"></A>
<!-- ======== END OF BOTTOM NAVBAR ======= -->

<HR>
-
</BODY>
</HTML>