package gcom.gui.cadastro.sistemaparametro; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import org.apache.struts.action.ActionForm; import org.apache.struts.action.ActionForward; import org.apache.struts.action.ActionMapping; /** * Descri��o da classe * * @author R�mulo Aur�lio * @date 08/01/2007 */ public class InformarParametrosSistemaFaturamentoTarifaSocialAction { /** * Description of the Method * * @param actionMapping * Description of the Parameter * @param actionForm * Description of the Parameter * @param httpServletRequest * Description of the Parameter * @param httpServletResponse * Description of the Parameter * @return Description of the Return Value */ public ActionForward execute(ActionMapping actionMapping, ActionForm actionForm, HttpServletRequest httpServletRequest, HttpServletResponse httpServletResponse) { // Verifica qual � o pr�ximo passo para a execu��o do processo //String destinoPagina = httpServletRequest.getParameter("destino"); ActionForward retorno = null; return retorno; } }