KickJava   Java API By Example, From Geeks To Geeks.

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


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  * Delegate in POATie approach of jackass::component::StatelessContext
12  * @author Carlos Arevalo, Nelson Arapé
13  */

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

22     public StatelessContextImpl(NamingContextExt JavaDoc rootContext, Property[] props)
23     {
24         super(rootContext, props);
25     }
26 }
27
Popular Tags