class HTTPServletSession extends HTTPSession
- Alphabetic
- By Inheritance
- HTTPServletSession
- HTTPSession
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Instance Constructors
- new HTTPServletSession(session: HttpSession)
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def attribute(name: String): Any
- name
- the attribute name
- returns
- the attribute value associated with this name
- Definition Classes
- HTTPServletSession → HTTPSession
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def lastAccessedTime: Long
- returns
- the last time server receivsd a client request for this session
- Definition Classes
- HTTPServletSession → HTTPSession
- def link(liftSession: LiftSession): Unit
Links a LiftSession with this HTTP session.
Links a LiftSession with this HTTP session. Hence when the HTTP session terminates or times out LiftSession will be destroyed as well.
- liftSession
- the LiftSession
- Definition Classes
- HTTPServletSession → HTTPSession
- def maxInactiveInterval: Long
- returns
- the maximim interval in seconds between client request and the time when the session will be terminated
- Definition Classes
- HTTPServletSession → HTTPSession
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- def removeAttribute(name: String): Unit
Removes the session attribute having this name
Removes the session attribute having this name
- name
- the attribute name
- Definition Classes
- HTTPServletSession → HTTPSession
- def sessionId: String
- returns
- the HTTP session ID
- Definition Classes
- HTTPServletSession → HTTPSession
- def setAttribute(name: String, value: Any): Unit
Sets a value associated with a name for this session
Sets a value associated with a name for this session
- name
- the attribute name
- value
- any value
- Definition Classes
- HTTPServletSession → HTTPSession
- def setMaxInactiveInterval(interval: Long): Unit
Sets the maximim interval in seconds between client request and the time when the session will be terminated
Sets the maximim interval in seconds between client request and the time when the session will be terminated
- interval
- the value in seconds
- Definition Classes
- HTTPServletSession → HTTPSession
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def terminate: Unit
Terminates this session
Terminates this session
- Definition Classes
- HTTPServletSession → HTTPSession
- def toString(): String
- Definition Classes
- AnyRef → Any
- def unlink(liftSession: LiftSession): Unit
The opposite of the link.
The opposite of the link. Hence the LiftSession and the HTTP session no longer needs to be related. It is called when LiftSession is explicitelly terminated.
- liftSession
- the LiftSession
- Definition Classes
- HTTPServletSession → HTTPSession
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()