/* * ComandoExibirDadosEvento.java * * Created on 29 de Junho de 2007, 10:40 * * 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 Tuvax */ public class ComandoExibirDadosEvento implements Comando { /** Creates a new instance of ComandoExibirDadosEvento */ public ComandoExibirDadosEvento() { } public String executar(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { return "/WEB-INF/ProporEvento.jsp"; } }