package gcom.batch.cadastro;
import gcom.cadastro.localidade.SetorComercial;
import gcom.seguranca.acesso.usuario.Usuario;
import gcom.tarefa.TarefaBatch;
import gcom.tarefa.TarefaException;
import gcom.util.ConstantesJNDI;
import gcom.util.ConstantesSistema;
import gcom.util.agendadortarefas.AgendadorTarefas;
import java.util.Collection;
import java.util.Iterator;
/**
*
* Batch criado para atualiza��o da coluna codigo debito automatico do imovel.
*
* @author Hugo Amorim
* @date 30/03/2010
*/
public class TarefaBatchAtualizarCodigoDebitoAutomatico extends TarefaBatch {
/**
*
*/
private static final long serialVersionUID = 1L;
public TarefaBatchAtualizarCodigoDebitoAutomatico(Usuario usuario,
int idFuncionalidadeIniciada) {
super(usuario, idFuncionalidadeIniciada);
}
@Deprecated
public TarefaBatchAtualizarCodigoDebitoAutomatico() {
super(null, 0);
}
@Override
public Object executar() throws TarefaException {
Collection colecaoSetores = (Collection) getParametro(ConstantesSistema.COLECAO_UNIDADES_PROCESSAMENTO_BATCH);
Iterator iterator = colecaoSetores.iterator();
while(iterator.hasNext()) {
SetorComercial setor = (SetorComercial) iterator.next();
enviarMensagemControladorBatch(
ConstantesJNDI.BATCH_ATUALIZAR_CODIGO_DEBITO_AUTOMATICO,
new Object[] { this.getIdFuncionalidadeIniciada(),setor});
}
return null;
}
@Override
protected Collection<Object> pesquisarTodasUnidadeProcessamentoBatch() {
return null;
}
@Override
protected Collection<Object> pesquisarTodasUnidadeProcessamentoReinicioBatch() {
return null;
}
@Override
public void agendarTarefaBatch() {
AgendadorTarefas.agendarTarefa("BatchAtualizarCodigoDebitoAutomatico",this);
}
}