Blame |
Last modification |
View Log
| Download
| RSS feed
package br.gov.al.saude.rhd.web.managebean.util;
import javax.faces.bean.ManagedBean;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Qualifier;
import org.springframework.context.annotation.Scope;
import org.springframework.stereotype.Component;
import br.gov.al.saude.framework.security.context.ContextoSeguranca;
import br.gov.al.saude.framework.web.bean.pessoa.ListaPessoaLazyDataModel;
import br.gov.al.saude.framework.web.bean.pessoa.PessoaModalScgBean;
@
Component
@ManagedBean
@Scope
("view")
public class PessoaConsultaBean
extends PessoaModalScgBean
{
private static final long serialVersionUID = 1L
;
@Autowired
public PessoaConsultaBean
(@Qualifier
("listaPessoaLazyDataModel") ListaPessoaLazyDataModel listaPessoaLazyDataModel,
ContextoSeguranca contextoSeguranca
) {
super(listaPessoaLazyDataModel, contextoSeguranca
);
}
}