|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.apache.shiro.session.mgt.DelegatingSession
public class DelegatingSession
A DelegatingSession is a client-tier representation of a server side
Session
.
This implementation is basically a proxy to a server-side NativeSessionManager
,
which will return the proper results for each method call.
A DelegatingSession will cache data when appropriate to avoid a remote method invocation, only communicating with the server when necessary.
Of course, if used in-process with a NativeSessionManager business POJO, as might be the case in a web-based application where the web classes and server-side business pojos exist in the same JVM, a remote method call will not be incurred.
Constructor Summary | |
---|---|
DelegatingSession(NativeSessionManager sessionManager,
SessionKey key)
|
Method Summary | |
---|---|
Object |
getAttribute(Object attributeKey)
Returns the object bound to this session identified by the specified key. |
Collection<Object> |
getAttributeKeys()
Returns the keys of all the attributes stored under this session. |
String |
getHost()
Returns the host name or IP string of the host that originated this session, or null
if the host is unknown. |
Serializable |
getId()
Returns the unique identifier assigned by the system upon session creation. |
Date |
getLastAccessTime()
Returns the last time the application received a request or method invocation from the user associated with this session. |
Date |
getStartTimestamp()
Returns the time the session was started; that is, the time the system created the instance. |
long |
getTimeout()
Returns the time in milliseconds that the session session may remain idle before expiring. |
Object |
removeAttribute(Object attributeKey)
Removes (unbinds) the object bound to this session under the specified key name. |
void |
setAttribute(Object attributeKey,
Object value)
Binds the specified value to this session, uniquely identified by the specifed
key name. |
void |
setTimeout(long maxIdleTimeInMillis)
Sets the time in milliseconds that the session may remain idle before expiring. |
void |
stop()
Explicitly stops (invalidates) this session and releases all associated resources. |
void |
touch()
Explicitly updates the lastAccessTime of this session to the current time when
this method is invoked. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public DelegatingSession(NativeSessionManager sessionManager, SessionKey key)
Method Detail |
---|
public Serializable getId()
Session
toString()
,
equals()
, and hashCode()
implementations. Good candidates for such
an identifier are UUID
s, Integer
s, and
String
s.
getId
in interface Session
Session.getId()
public Date getStartTimestamp()
Session
getStartTimestamp
in interface Session
Session.getStartTimestamp()
public Date getLastAccessTime()
Session
getLastAccessTime
in interface Session
Session.getLastAccessTime()
public long getTimeout() throws InvalidSessionException
Session
HttpSession
's getMaxInactiveInterval()
method, the scale on
this method is different: Shiro Sessions use millisecond values for timeout whereas
HttpSession.getMaxInactiveInterval
uses seconds. Always use millisecond values with Shiro sessions.
getTimeout
in interface Session
InvalidSessionException
- if the session has been stopped or expired prior to calling this method.public void setTimeout(long maxIdleTimeInMillis) throws InvalidSessionException
Session
HttpSession
's getMaxInactiveInterval()
method, the scale on
this method is different: Shiro Sessions use millisecond values for timeout whereas
HttpSession.getMaxInactiveInterval
uses seconds. Always use millisecond values with Shiro sessions.
setTimeout
in interface Session
maxIdleTimeInMillis
- the time in milliseconds that the session may remain idle before expiring.
InvalidSessionException
- if the session has been stopped or expired prior to calling this method.public String getHost()
Session
null
if the host is unknown.
getHost
in interface Session
null
if the host address is unknown.public void touch() throws InvalidSessionException
Session
lastAccessTime
of this session to the current time when
this method is invoked. This method can be used to ensure a session does not time out.
Most programmers won't use this method directly and will instead rely on the last access time to be updated
automatically as a result of an incoming web request or remote procedure call/method invocation.
However, this method is particularly useful when supporting rich-client applications such as
Java Web Start appp, Java or Flash applets, etc. Although rare, it is possible in a rich-client
environment that a user continuously interacts with the client-side application without a
server-side method call ever being invoked. If this happens over a long enough period of
time, the user's server-side session could time-out. Again, such cases are rare since most
rich-clients frequently require server-side method invocations.
In this example though, the user's session might still be considered valid because
the user is actively "using" the application, just not communicating with the
server. But because no server-side method calls are invoked, there is no way for the server
to know if the user is sitting idle or not, so it must assume so to maintain session
integrity. This touch()
method could be invoked by the rich-client application code during those
times to ensure that the next time a server-side method is invoked, the invocation will not
throw an ExpiredSessionException
. In short terms, it could be used periodically
to ensure a session does not time out.
How often this rich-client "maintenance" might occur is entirely dependent upon
the application and would be based on variables such as session timeout configuration,
usage characteristics of the client application, network utilization and application server
performance.
touch
in interface Session
InvalidSessionException
- if this session has stopped or expired prior to calling this method.Session.touch()
public void stop() throws InvalidSessionException
Session
Subject
that
owns this session has logged-in), calling this method explicitly might have undesired side effects:
It is common for a Subject
implementation to retain authentication state in the
Session
. If the session
is explicitly stopped by application code by calling this method directly, it could clear out any
authentication state that might exist, thereby effectively "unauthenticating" the Subject
.
As such, you might consider logging-out
the 'owning'
Subject
instead of manually calling this method, as a log out is expected to stop the
corresponding session automatically, and also allows framework code to execute additional cleanup logic.
stop
in interface Session
InvalidSessionException
- if this session has stopped or expired prior to calling this method.Session.stop()
public Collection<Object> getAttributeKeys() throws InvalidSessionException
Session
getAttributeKeys
in interface Session
InvalidSessionException
- if this session has stopped or expired prior to calling this method.Session.getAttributeKeys()
public Object getAttribute(Object attributeKey) throws InvalidSessionException
Session
null
is returned.
getAttribute
in interface Session
attributeKey
- the unique name of the object bound to this session
key
name or null
if there is
no object bound under that name.
InvalidSessionException
- if this session has stopped or expired prior to calling
this method.Session.getAttribute(Object key)
public void setAttribute(Object attributeKey, Object value) throws InvalidSessionException
Session
value
to this session, uniquely identified by the specifed
key
name. If there is already an object bound under the key
name, that
existing object will be replaced by the new value
.
If the value
parameter is null, it has the same effect as if
removeAttribute
was called.
setAttribute
in interface Session
attributeKey
- the name under which the value
object will be bound in this sessionvalue
- the object to bind in this session.
InvalidSessionException
- if this session has stopped or expired prior to calling
this method.Session.setAttribute(Object key, Object value)
public Object removeAttribute(Object attributeKey) throws InvalidSessionException
Session
key
name.
removeAttribute
in interface Session
attributeKey
- the name uniquely identifying the object to remove
null
if there was no object bound under the name
key
.
InvalidSessionException
- if this session has stopped or expired prior to calling
this method.Session.removeAttribute(Object key)
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |