/* * This file is part of SGEA - Sistema de Gestão de Eventos Acadêmicos - TADS IFNMG Campus Januária. * * SGEA is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * SGEA is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with SGEA. If not, see <http://www.gnu.org/licenses/>. */ package br.edu.ifnmg.GerenciamentoEventos.Apresentacao.Converters; import br.edu.ifnmg.GerenciamentoEventos.DomainModel.Recurso; import br.edu.ifnmg.GerenciamentoEventos.DomainModel.Servicos.RecursoRepositorio; import br.edu.ifnmg.GerenciamentoEventos.Aplicacao.GenericConverter; import br.edu.ifnmg.GerenciamentoEventos.DomainModel.RecursoTipo; import java.io.Serializable; import java.util.List; import javax.annotation.PostConstruct; import javax.ejb.EJB; import javax.inject.Named; import javax.inject.Singleton; /** * * @author petronio */ @Named(value = "recursoConverter") @Singleton public class RecursoConverter extends GenericConverter<Recurso, RecursoRepositorio> implements Serializable { @EJB RecursoRepositorio dao; @PostConstruct public void init() { setRepositorio(dao); } public List<Recurso> autoCompleteRecurso(String query) { Recurso i = new Recurso(); i.setNome(query); return dao.Buscar(i); } public List<Recurso> autoCompleteImoveis(String query) { Recurso i = new Recurso(); i.setNome(query); i.setTipo(RecursoTipo.Imovel); return dao.Buscar(i); } }