KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sun > corba > se > spi > orb > ORBConfigurator


1 /*
2  * @(#)ORBConfigurator.java 1.10 03/12/19
3  *
4  * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
5  * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
6  */

7 package com.sun.corba.se.spi.orb ;
8
9 /** Interface used to configure an ORB instance. The DataCollector dc has all
10  * available config info available. The configure method may constructor a
11  * parser, call dc.setParser( parser ), get the consolidated properties from dc,
12  * and parse this information. The configure method may also register ORB
13  * components with the ORB and perform other parts of ORB initialization.
14  * Implementations of this interface must have a public no-args constructor.
15  */

16 public interface ORBConfigurator {
17     void configure( DataCollector dc, ORB orb ) ;
18 }
19
20
Popular Tags