Commit 2b4bf8eefa99a88ec8503087c35fe2882b473d65
1 parent
c1dd0178
Exists in
master
Modificação para o escopo correto
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
impl/core/src/main/java/br/gov/frameworkdemoiselle/internal/implementation/PaginationContextImpl.java
... | ... | @@ -40,7 +40,7 @@ import java.io.Serializable; |
40 | 40 | import java.util.HashMap; |
41 | 41 | import java.util.Map; |
42 | 42 | |
43 | -import javax.enterprise.context.RequestScoped; | |
43 | +import javax.enterprise.context.SessionScoped; | |
44 | 44 | import javax.inject.Inject; |
45 | 45 | |
46 | 46 | import br.gov.frameworkdemoiselle.internal.configuration.PaginationConfig; |
... | ... | @@ -54,7 +54,7 @@ import br.gov.frameworkdemoiselle.pagination.PaginationContext; |
54 | 54 | * @author SERPRO |
55 | 55 | * @see PaginationContext |
56 | 56 | */ |
57 | -@RequestScoped | |
57 | +@SessionScoped | |
58 | 58 | public class PaginationContextImpl implements Serializable, PaginationContext { |
59 | 59 | |
60 | 60 | private static final long serialVersionUID = 1L; | ... | ... |