Interface ClientSession


public interface ClientSession
Interface that defines the state of the connection to the server. It is also where the ServiceManager can be found. A session is created and initialized by calling SessionFactory.logon(URL,String, byte[]).
Since:
1.1
  • Method Summary

    Modifier and Type
    Method
    Description
    Get the single service manager for this session.
    void
    Log off the session and free any server-side resources being held.
  • Method Details

    • logoff

      void logoff()
      Log off the session and free any server-side resources being held.
    • getServiceManager

      ServiceManager getServiceManager()
      Get the single service manager for this session. The service manager is the access point for all services provided by the API.
      Returns:
      the single service manager for this session.