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. /** Interface used to configure an ORB instance. The DataCollector dc has all
  9. * available config info available. The configure method may constructor a
  10. * parser, call dc.setParser( parser ), get the consolidated properties from dc,
  11. * and parse this information. The configure method may also register ORB
  12. * components with the ORB and perform other parts of ORB initialization.
  13. * Implementations of this interface must have a public no-args constructor.
  14. */
  15. public interface ORBConfigurator {
  16. void configure( DataCollector dc, ORB orb ) ;
  17. }