Interface InternalSession.PageVisitor

Enclosing interface:
InternalSession

public static interface InternalSession.PageVisitor
A page visitor interface.
See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Callback for when the page to visit has been closed
    void
    Callback for when the page to visit is found
    void
    Callback for when the page to visit has been closed due to session logout
    void
    Callback for when the page to visit does not exist
  • Method Details

    • onPageFound

      void onPageFound(PageModel page)
      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

      void onPageLoggedOut(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
    • onPageClosed

      void onPageClosed(String message)
      Callback for when the page to visit has been closed
      Parameters:
      message - the message explaining why the page was closed