Commit 60957f927f488b0a464b3b517bd9f0fee3319b8b
1 parent
87d9d647
Exists in
master
Adição de javadoc para a classe
br.gov.frameworkdemoiselle.annotation.ViewScoped
Showing
1 changed file
with
5 additions
and
0 deletions
Show diff stats
impl/core/src/main/java/br/gov/frameworkdemoiselle/annotation/ViewScoped.java
... | ... | @@ -47,6 +47,11 @@ import java.lang.annotation.Target; |
47 | 47 | |
48 | 48 | import javax.enterprise.context.NormalScope; |
49 | 49 | |
50 | +/** | |
51 | + * This scope maintains the context for viewed page; when the viewed page change, the data will be lost. | |
52 | + * | |
53 | + * @author SERPRO | |
54 | + */ | |
50 | 55 | @Inherited |
51 | 56 | @Target({ METHOD, TYPE, FIELD }) |
52 | 57 | @Retention(RUNTIME) | ... | ... |