Skip to content

Commit

Permalink
reduced the scope to "ViewScope" in order to make testing simpler
Browse files Browse the repository at this point in the history
  • Loading branch information
stephanrauh committed Jan 7, 2017
1 parent 6c43ebc commit 3e62bf0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/net/bootsfaces/demo/TestBean.java
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@
import java.io.Serializable;

import javax.faces.bean.ManagedBean;
import javax.faces.bean.SessionScoped;
import javax.faces.bean.ViewScoped;

/**
*
* @author TheCoder4eu
*/
@ManagedBean
@SessionScoped
@ViewScoped
public class TestBean implements Serializable {
private static final long serialVersionUID = -332002335165889800L;
private int val1 = 78;
Expand Down

0 comments on commit 3e62bf0

Please sign in to comment.