Guest User

Untitled

a guest
Feb 18th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. object Wizard extends ViewConfig {
  2.  
  3. @Page
  4. object Page1 extends ViewConfig
  5.  
  6. @Page
  7. object Page2 extends ViewConfig
  8.  
  9. def GO_PAGE1: Class[_] = Page1.getClass
  10. def GO_PAGE2: Class[_] = Page2.getClass
  11. }
  12.  
  13. @ManagedBean
  14. class Login {
  15. import Wizard._
  16.  
  17. def goPage1(): Class[_] = GO_PAGE1
  18. }
Add Comment
Please, Sign In to add comment