package org.torrent.basnark.web;
import javax.servlet.*;
import java.io.IOException;
/**
* Date: 26.09.2009
* Time: 19:52:34 (Moscow Standard Time)
*
* @author Vlad Vinichenko (akerigan@gmail.com)
*/
public class TorrentServlet implements Servlet {
public void init(ServletConfig config) throws ServletException {
//To change body of implemented methods use File | Settings | File Templates.
}
public ServletConfig getServletConfig() {
return null; //To change body of implemented methods use File | Settings | File Templates.
}
public void service(ServletRequest req, ServletResponse res) throws ServletException, IOException {
//To change body of implemented methods use File | Settings | File Templates.
}
public String getServletInfo() {
return null; //To change body of implemented methods use File | Settings | File Templates.
}
public void destroy() {
//To change body of implemented methods use File | Settings | File Templates.
}
}