You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
yacy_search_server/source/net/yacy/http/YaCyHttpServer.java

22 lines
596 B

package net.yacy.http;
/**
* Isolation of HttpServer
*
* Development Goal: allow for individual implementation of a HttpServer
* to provide the routines and entry points required by the
* YaCy servlets
*
* Implementation Jetty9HttpServerImpl.java
*/
public interface YaCyHttpServer {
11 years ago
abstract void startupServer() throws Exception;
abstract void stop() throws Exception;
abstract int getSslPort();
11 years ago
abstract boolean withSSL();
abstract void reconnect(int milsec);
abstract String getVersion();
}