java-org.hwo/src/org/hwo/net/http/HttpServerConnectionFactory...

11 lines
251 B
Java

package org.hwo.net.http;
import java.io.IOException;
import java.net.Socket;
public interface HttpServerConnectionFactory {
public HttpServerConnection createHttpServerConnection(HttpServer httpServer,Socket clientSocket) throws IOException;
}