Interface InternalSession.PageVisitor
- Enclosing interface:
- InternalSession
public static interface InternalSession.PageVisitor
A page visitor interface.
-
Method Summary
Modifier 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
-
onPageFound
Callback for when the page to visit is found- Parameters:
page- the page to visit
-
onPageMissing
void onPageMissing()Callback for when the page to visit does not exist -
onPageLoggedOut
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
-
onPageClosed
Callback for when the page to visit has been closed- Parameters:
message- the message explaining why the page was closed
-