package gcom.gui.cadastro.tarifasocial; import javax.servlet.http.HttpServletRequest; import org.apache.struts.action.ActionErrors; import org.apache.struts.action.ActionForm; import org.apache.struts.action.ActionMapping; /** * [UC0217] Inserir Resolu��o de Diretoria * @author Rafael Corr�a * @since 30/03/2006 */ public class RemoverTarifaSocialImovelAnteriorActionForm extends ActionForm { private static final long serialVersionUID = 1L; private String idImovel; private String motivoRevisao; private String motivoExclusao; public ActionErrors validate(ActionMapping actionMapping, HttpServletRequest httpServletRequest) { /** @todo: finish this method, this is just the skeleton. */ return null; } public void reset(ActionMapping actionMapping, HttpServletRequest httpServletRequest) { idImovel = null; motivoRevisao = null; motivoExclusao = null; } /** * @return Retorna o campo idMotivoExclusao. */ public String getMotivoExclusao() { return motivoExclusao; } /** * @param idMotivoExclusao O idMotivoExclusao a ser setado. */ public void setMotivoExclusao(String motivoExclusao) { this.motivoExclusao = motivoExclusao; } /** * @return Retorna o campo idImovel. */ public String getIdImovel() { return idImovel; } /** * @param idImovel O idImovel a ser setado. */ public void setIdImovel(String idImovel) { this.idImovel = idImovel; } /** * @return Retorna o campo motivoRevisao. */ public String getMotivoRevisao() { return motivoRevisao; } /** * @param motivoRevisao O motivoRevisao a ser setado. */ public void setMotivoRevisao(String motivoRevisao) { this.motivoRevisao = motivoRevisao; } }