blob: e5544cd913b211d710ba22f5dc3eb9baeb450761 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009, Cloudsmith Inc and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Cloudsmith Inc. - initial API and implementation
*******************************************************************************/
package org.eclipse.equinox.p2.testserver.servlets;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
/**
* This servlet is a "black hole" - it just sleeps for an hour on any request.
*
*/
public class TimeOut extends HttpServlet {
private static final long serialVersionUID = 1L;
private static long MINUTES_MS = 1000 * 60; // minutes in ms
protected void doGet(HttpServletRequest request, HttpServletResponse response) {
doDelay();
}
private void doDelay() {
// Do nothing...
try {
Thread.sleep(10 * MINUTES_MS); // sleep 10 minutes
} catch (InterruptedException e) {
e.printStackTrace();
}
}
protected void doHead(HttpServletRequest request, HttpServletResponse response) {
doDelay();
}
}