public void handle(Request request, HttpServletResponse response) {
response.setStatus(HTTP_OK);
}
};
ConnectionFactory factory = new ConnectionFactory() {
public HttpURLConnection create(URL otherUrl) throws IOException {
return (HttpURLConnection) new URL(url).openConnection();
}