|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcom.sibvisions.rad.server.DirectServerSession
public class DirectServerSession
The DirectServerSession
is a wrapper for server-side sessions. It is fully attached and forwards
every method call to the server-side session. To create a new instance of DirectServerSession
use
DirectServerSession session = DirectServerSession.createMasterSession(...);
or
session.createSubSession(...);
Method Summary | |
---|---|
Object |
call(String pObjectName,
String pMethod,
Object... pParams)
Executes a method from an object in the life-cycle object. |
Object |
callAction(String pAction,
Object... pParams)
Executes an action from the life-cycle object. |
static DirectServerSession |
createMasterSession(String pApplicationName,
String pUserName,
String pPassword)
Creates a new instance of DirectServerSession for the given application and credentials. |
DirectServerSession |
createSubSession(String pLifeCycleName)
Creates a new instance of DirectServerSession as sub session for the given life-cycle object name. |
void |
destroy()
Closes the session. |
Object |
get(String pObjectName)
Gets an object from the life-cycle object. |
long |
getAliveInterval()
Gets the desired client-side communication interval for this session. |
String |
getApplicationName()
Gets the associated application name of the session. |
IConfiguration |
getConfig()
Gets the IConfiguration of the session. |
Object |
getId()
Gets the session identifier. |
long |
getLastAccessTime()
Gets the time of the last session access. |
long |
getLastAliveTime()
Gets the time of the last communication of the session. |
String |
getLifeCycleName()
Gets the name of the life-cycle object. |
int |
getMaxInactiveInterval()
Returns the maximum time interval, in minutes, that this session will be active. |
String |
getPassword()
Gets the sessions password. |
Hashtable<String,Object> |
getProperties()
Gets all properties. |
Object |
getProperty(String pName)
Gets the value of a property. |
long |
getStartTime()
Gets the session start/create time. |
String |
getUserName()
Gets the sessions user name. |
boolean |
isAlive(long pAccessTime)
Checks if the session is alive. |
boolean |
isInactive(long pAccessTime)
Checks if the session is inactive. |
Object |
put(String pObjectName,
Object pObject)
Puts an object to the life-cycle object. |
void |
setAliveInterval(long pAliveInterval)
Sets the desired client-side communication interval for this session. |
void |
setMaxInactiveInterval(int pMaxInactiveInterval)
Specifies the time, in minutes, between access before the session will be inactive. |
void |
setProperty(String pName,
Object pValue)
Sets the value of a property. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Method Detail |
---|
public Object getId()
getId
in interface ISession
public String getApplicationName()
getApplicationName
in interface ISession
public String getLifeCycleName()
getLifeCycleName
in interface ISession
public String getUserName()
getUserName
in interface ISession
public String getPassword()
getPassword
in interface ISession
public Object get(String pObjectName) throws Throwable
get
in interface ISession
pObjectName
- the object name
Throwable
- if the object was not found or an error occured during object creationpublic Object put(String pObjectName, Object pObject) throws Throwable
put
in interface ISession
pObjectName
- the object namepObject
- the object
Throwable
- if an unknown error occurs while putting the objectpublic Object call(String pObjectName, String pMethod, Object... pParams) throws Throwable
call
in interface ISession
pObjectName
- list of already mapped server object name/aliaspMethod
- method name which should be calledpParams
- parameters for the method call
Throwable
- if the object identified by pObjectName
was found but can not be created
SecurityException
- if the method call is not allowedpublic Object callAction(String pAction, Object... pParams) throws Throwable
callAction
in interface ISession
pAction
- action which should be calledpParams
- the parameters for the action call
Throwable
- communication error, security checks, invalid action, ...public IConfiguration getConfig()
IConfiguration
of the session.
getConfig
in interface ISession
public long getLastAccessTime()
getLastAccessTime
in interface ISession
public long getLastAliveTime()
getLastAliveTime
in interface ISession
public void setProperty(String pName, Object pValue)
setProperty
in interface ISession
pName
- the property namepValue
- the value for the property or null
to delete the propertypublic Object getProperty(String pName)
getProperty
in interface ISession
pName
- the property name
null
if the property is not availablepublic Hashtable<String,Object> getProperties()
getProperties
in interface ISession
Hashtable
with property names and valuespublic long getStartTime()
getStartTime
in interface ISession
public boolean isAlive(long pAccessTime)
isAlive
in interface ISession
pAccessTime
- current access time
true
if the session is aliveISession.getLastAliveTime()
,
ISession.getAliveInterval()
public boolean isInactive(long pAccessTime)
isInactive
in interface ISession
pAccessTime
- current access time
true
if the session is inactiveISession.getMaxInactiveInterval()
,
ISession.getLastAccessTime()
public long getAliveInterval()
getAliveInterval
in interface ISession
public void setAliveInterval(long pAliveInterval)
setAliveInterval
in interface ISession
pAliveInterval
- the alive interval (client-side)public int getMaxInactiveInterval()
setMaxInactiveInterval
method. A zero or negative time indicates the session should never be inactive.
getMaxInactiveInterval
in interface ISession
ISession.setMaxInactiveInterval(int)
public void setMaxInactiveInterval(int pMaxInactiveInterval)
setMaxInactiveInterval
in interface ISession
pMaxInactiveInterval
- time in minutespublic void destroy()
public static DirectServerSession createMasterSession(String pApplicationName, String pUserName, String pPassword) throws Throwable
DirectServerSession
for the given application and credentials.
pApplicationName
- the name of the applicationpUserName
- the user namepPassword
- the password
Throwable
- if session creation failspublic DirectServerSession createSubSession(String pLifeCycleName) throws Throwable
DirectServerSession
as sub session for the given life-cycle object name.
pLifeCycleName
- the full qualified class name of the life-cycle object
Throwable
- if session creation fails
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |