Configurator.java :  » ESB » celtix-1.0 » org » objectweb » celtix » configuration » Java Open Source

Java Open Source » ESB » celtix 1.0 
celtix 1.0 » org » objectweb » celtix » configuration » Configurator.java
package org.objectweb.celtix.configuration;

import java.util.Collection;

public interface Configurator {
    
    Configuration getConfiguration();

    Configurator getHook();
    
    Collection<Configurator> getClients();
    
    void registerClient(Configurator c);
    
    void unregisterClient(Configurator c);
  
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.