Package org.locomotive.servlets.test

Class Summary
MultiThreadedHang This servlet is a test servlet that always prints a random number and then makes the request Thread sleep for five minutes, thereby hanging the Thread.
PermanentlyUnavailable1 This servlet is a test servlet that always throws a permanent UnavailableException during initialization in an attempt to tell the servlet container that this multithreaded servlet should be permanently unavailable.
PermanentlyUnavailable2 This servlet is a test servlet that always throws a permanent UnavailableException during any call to the service() method in an attempt to tell the servlet container that this multithreaded servlet instance should be taken out of service.
PermanentlyUnavailable3 This servlet is a test servlet that always throws a permanent UnavailableException during calls to the service() method in an attempt to tell the servlet container that this single-threaded servlet instance is permanently unavailable, and should be destroyed and removed.
PermanentlyUnavailable4 This servlet is a test servlet that always throws a permanent UnavailableException during any call to the service() method in an attempt to tell the servlet container that this servlet instance should be taken out of service.
SingleThreadedHang This servlet is a test servlet that always prints a random number and then makes the request Thread sleep for five minutes, thereby hanging the Thread.
TemporarilyUnavailable1 This servlet is a test servlet that always throws UnavailableException during initialization in an attempt to tell the servlet container that this multithreaded servlet should be unavailable for two minutes.
TemporarilyUnavailable2 This servlet is a test servlet that always throws UnavailableException during initialization in an attempt to tell the servlet container that this servlet instance is temporarily unavailable.
TemporarilyUnavailable3 This servlet is a test servlet that always throws UnavailableException during initialization in an attempt to tell the servlet container that servlets of this kind should be unavailable for two minutes.
TemporarilyUnavailable4 This servlet is a test servlet that always throws UnavailableException during initialization in an attempt to tell the servlet container that this single-threaded servlet instance is temporarily unavailable.