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

10 lines
198 B
Java
Raw Normal View History

2014-05-15 03:29:32 +02:00
package org.hwo.net.http;
import java.io.IOException;
public interface HttpServerRequestFactory {
public HttpServerRequest createRequest(HttpServerConnection connection) throws IOException;
}