Interface InternalSession.PageVisitor
- 
- Enclosing interface:
- InternalSession
 
 public static interface InternalSession.PageVisitorA page visitor interface.
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonPageClosed(java.lang.String message)Callback for when the page to visit has been closedvoidonPageFound(PageModel page)Callback for when the page to visit is foundvoidonPageLoggedOut(java.lang.String message)Callback for when the page to visit has been closed due to session logoutvoidonPageMissing()Callback for when the page to visit does not exist
 
- 
- 
- 
Method Detail- 
onPageFoundvoid onPageFound(PageModel page) Callback for when the page to visit is found- Parameters:
- page- the page to visit
 
 - 
onPageMissingvoid onPageMissing() Callback for when the page to visit does not exist
 - 
onPageLoggedOutvoid onPageLoggedOut(java.lang.String message) Callback for when the page to visit has been closed due to session logout- Parameters:
- message- the message explaining why the session was logged out
 
 - 
onPageClosedvoid onPageClosed(java.lang.String message) Callback for when the page to visit has been closed- Parameters:
- message- the message explaining why the page was closed
 
 
- 
 
-