package org.wikiwebserver.core.interfaces;

/**
 * A HandlerConfiguration is used to configure a ConnectionHandler to
 * operate in a specific way.
 * 
 * For example, when processing HTTP connections, a configuration will
 * determine how URLs are processed and returned to clients.
 * 
 * This interface should be extended to provide protocol specific
 * configuration details and functionality.
 * 
 * @author Dr Michael Gardiner
 */
public interface HandlerConfiguration {

}

