/* * Comando.java * * Created on 21 de Novembro de 2006, 22:49 * * To change this template, choose Tools | Template Manager * and open the template in the editor. */ package app; import java.io.IOException; import javax.servlet.ServletException; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; /** * * @author Eduardo */ public interface Comando { public String executar(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException; }