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 theServiceManager
can be found. A session is created and initialized by callingSessionFactory.logon(URL,String, byte[])
.- Since:
- 1.1
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ServiceManager
getServiceManager()
Get the single service manager for this session.void
logoff()
Log off the session and free any server-side resources being held.
-
-
-
Method Detail
-
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.
-
-