KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > ve > luz > ica > jackass > component > ApplicationContextImpl


1 /*
2  * Copyright (c) 2003 by The Jackass Team
3  * Licensed under the Open Software License version 2.0
4  */

5 package ve.luz.ica.jackass.component;
6
7 import org.omg.CosNaming.NamingContextExt JavaDoc;
8 import ve.luz.ica.jackass.deploy.descriptor.standard.Property;
9
10
11 /**
12  * Delegate in POATie approach of jackass::component::ApplicationContext
13  * @author Carlos Arevalo, Nelson Arapé
14  */

15 public class ApplicationContextImpl extends AbstractJackassContext
16         implements ApplicationContextOperations
17 {
18
19     /**
20      * Class constructor
21      * @param rootContext the root of the system wide Name Service
22      * @param props an array of properties
23      */

24     public ApplicationContextImpl(NamingContextExt JavaDoc rootContext, Property[] props)
25     {
26         super(rootContext, props);
27     }
28 }
29
Popular Tags