cn.geektool.http.server.HttpServerBase Maven / Gradle / Ivy
The newest version!
package cn.geektool.http.server;
import cn.geektool.core.util.CharsetUtil;
import com.sun.net.httpserver.HttpContext;
import com.sun.net.httpserver.HttpExchange;
import java.nio.charset.Charset;
/**
* HttpServer公用对象,提供HttpExchange包装和公用方法
*
* @author jd
* @since 5.2.6
*/
public class HttpServerBase {
final static Charset DEFAULT_CHARSET = CharsetUtil.CHARSET_UTF_8;
final HttpExchange httpExchange;
/**
* 构造
*
* @param httpExchange {@link HttpExchange}
*/
public HttpServerBase(HttpExchange httpExchange) {
this.httpExchange = httpExchange;
}
/**
* 获取{@link HttpExchange}对象
*
* @return {@link HttpExchange}对象
*/
public HttpExchange getHttpExchange() {
return this.httpExchange;
}
/**
* 获取{@link HttpContext}
*
* @return {@link HttpContext}
* @since 5.5.7
*/
public HttpContext getHttpContext() {
return getHttpExchange().getHttpContext();
}
}