All Downloads are FREE. Search and download functionalities are using the official Maven repository.

koncept.http.server.ConfigurableHttpServerProvider Maven / Gradle / Ivy

There is a newer version: 1.0.2
Show newest version
package koncept.http.server;

import java.io.IOException;
import java.net.InetSocketAddress;

import com.sun.net.httpserver.spi.HttpServerProvider;

/**
 * provider specialization marker interface
 * @author koncept
 *
 */
public abstract class ConfigurableHttpServerProvider extends HttpServerProvider {

	@Override
	public abstract ConfigurableHttpServer createHttpServer(InetSocketAddress addr, int backlog)
			throws IOException;
	
	@Override
	public abstract ConfigurableHttpsServer createHttpsServer(InetSocketAddress addr, int backlog)
			throws IOException;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy