Package com.sas.lsaf.client
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 TypeMethodDescriptionGet the single service manager for this session.voidlogoff()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.
-