View Javadoc

1   package org.codehaus.xfire.plexus.config;
2   
3   /***
4    * Loads up an XML document describing the services and then
5    * builds the services using ServiceConfigurators.
6    * 
7    * @author <a href="mailto:dan@envoisolutions.com">Dan Diephouse</a>
8    * @since Sep 20, 2004
9    */
10  public interface ConfigurationService
11  {
12      String ROLE = ConfigurationService.class.getName();
13  
14      public void register( Configurator configurator );
15  }