Interface InternalSession.PageVisitor
- Enclosing interface:
- InternalSession
public static interface InternalSession.PageVisitor
A page visitor interface.
- 
Method SummaryModifier and TypeMethodDescriptionvoidonPageClosed(String message) Callback for when the page to visit has been closedvoidonPageFound(PageModel page) Callback for when the page to visit is foundvoidonPageLoggedOut(String message) Callback for when the page to visit has been closed due to session logoutvoidCallback for when the page to visit does not exist
- 
Method Details- 
onPageFoundCallback 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
- 
onPageLoggedOutCallback for when the page to visit has been closed due to session logout- Parameters:
- message- the message explaining why the session was logged out
 
- 
onPageClosedCallback for when the page to visit has been closed- Parameters:
- message- the message explaining why the page was closed
 
 
-