Details | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 1 | espaco | 1 | package br.gov.al.saude.rhd.web.managebean.util; |
| 2 | |||
| 3 | import javax.faces.bean.ManagedBean; |
||
| 4 | |||
| 5 | import org.springframework.beans.factory.annotation.Autowired; |
||
| 6 | import org.springframework.beans.factory.annotation.Qualifier; |
||
| 7 | import org.springframework.context.annotation.Scope; |
||
| 8 | import org.springframework.stereotype.Component; |
||
| 9 | |||
| 10 | import br.gov.al.saude.framework.security.context.ContextoSeguranca; |
||
| 11 | import br.gov.al.saude.framework.web.bean.pessoa.ListaPessoaLazyDataModel; |
||
| 12 | import br.gov.al.saude.framework.web.bean.pessoa.PessoaModalScgBean; |
||
| 13 | |||
| 14 | @Component |
||
| 15 | @ManagedBean |
||
| 16 | @Scope("view") |
||
| 17 | public class PessoaConsultaBean extends PessoaModalScgBean { |
||
| 18 | |||
| 19 | private static final long serialVersionUID = 1L; |
||
| 20 | |||
| 21 | @Autowired |
||
| 22 | public PessoaConsultaBean(@Qualifier("listaPessoaLazyDataModel") ListaPessoaLazyDataModel listaPessoaLazyDataModel, |
||
| 23 | ContextoSeguranca contextoSeguranca) { |
||
| 24 | super(listaPessoaLazyDataModel, contextoSeguranca); |
||
| 25 | } |
||
| 26 | |||
| 27 | } |
||
| 28 |