Interface InternalSession.PageVisitor
- Enclosing interface:
- InternalSession
public static interface InternalSession.PageVisitor
A page visitor interface.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
onPageClosed
(String message) Callback for when the page to visit has been closedvoid
onPageFound
(PageModel page) Callback for when the page to visit is foundvoid
onPageLoggedOut
(String message) Callback for when the page to visit has been closed due to session logoutvoid
Callback 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
-