|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.eclipse.jetty.server.session.AbstractSession
public abstract class AbstractSession
Implements HttpSession
from the javax.servlet
package.
Field Summary | |
---|---|
protected Map<String,Object> |
_jdbcAttributes
|
Constructor Summary | |
---|---|
protected |
AbstractSession(AbstractSessionManager abstractSessionManager,
HttpServletRequest request)
|
protected |
AbstractSession(AbstractSessionManager abstractSessionManager,
long created,
long accessed,
String clusterId)
|
Method Summary | |
---|---|
protected boolean |
access(long time)
|
void |
bindValue(String name,
Object value)
If value implements HttpSessionBindingListener, call valueBound() |
protected void |
checkValid()
asserts that the session is valid |
void |
clearAttributes()
|
protected void |
complete()
|
protected void |
cookieSet()
|
void |
didActivate()
|
protected Object |
doGet(String name)
|
protected void |
doInvalidate()
|
protected Object |
doPutOrRemove(String name,
Object value)
|
long |
getAccessed()
|
Object |
getAttribute(String name)
Returns the object bound with the specified name in this session, or null if no object is bound under the name. |
Enumeration<String> |
getAttributeNames()
Returns an Enumeration of String objects
containing the names of all the objects bound to this session. |
int |
getAttributes()
|
String |
getClusterId()
|
long |
getCookieSetTime()
|
long |
getCreationTime()
Returns the time when this session was created, measured in milliseconds since midnight January 1, 1970 GMT. |
String |
getId()
Returns a string containing the unique identifier assigned to this session. |
long |
getLastAccessedTime()
Returns the last time the client sent a request associated with this session, as the number of milliseconds since midnight January 1, 1970 GMT, and marked by the time the container received the request. |
int |
getMaxInactiveInterval()
Returns the maximum time interval, in seconds, that the servlet container will keep this session open between client accesses. |
Set<String> |
getNames()
|
String |
getNodeId()
|
int |
getRequests()
|
ServletContext |
getServletContext()
Returns the ServletContext to which this session belongs. |
AbstractSession |
getSession()
|
HttpSessionContext |
getSessionContext()
Deprecated. |
Object |
getValue(String name)
Deprecated. As of Version 2.2, this method is replaced by getAttribute(java.lang.String) |
String[] |
getValueNames()
Deprecated. As of Version 2.2, this method is replaced by getAttributeNames() |
void |
invalidate()
Invalidates this session then unbinds any objects bound to it. |
boolean |
isIdChanged()
|
boolean |
isNew()
Returns true if the client does not yet know about the
session or if the client chooses not to join the session. |
boolean |
isValid()
|
void |
putValue(String name,
Object value)
Deprecated. As of Version 2.2, this method is replaced by setAttribute(java.lang.String, java.lang.Object) |
void |
removeAttribute(String name)
Removes the object bound with the specified name from this session. |
void |
removeValue(String name)
Deprecated. As of Version 2.2, this method is replaced by removeAttribute(java.lang.String) |
void |
setAttribute(String name,
Object value)
Binds an object to this session, using the name specified. |
void |
setIdChanged(boolean changed)
|
void |
setMaxInactiveInterval(int secs)
Specifies the time, in seconds, between client requests before the servlet container will invalidate this session. |
void |
setRequests(int requests)
|
protected void |
timeout()
|
String |
toString()
|
void |
unbindValue(String name,
Object value)
If value implements HttpSessionBindingListener, call valueUnbound() |
void |
willPassivate()
|
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail |
---|
protected final Map<String,Object> _jdbcAttributes
Constructor Detail |
---|
protected AbstractSession(AbstractSessionManager abstractSessionManager, HttpServletRequest request)
protected AbstractSession(AbstractSessionManager abstractSessionManager, long created, long accessed, String clusterId)
Method Detail |
---|
protected void checkValid() throws IllegalStateException
IllegalStateException
public AbstractSession getSession()
getSession
in interface AbstractSessionManager.SessionIf
public long getAccessed()
public Object getAttribute(String name)
HttpSession
null
if no object is bound under the name.
getAttribute
in interface HttpSession
name
- a string specifying the name of the object
public int getAttributes()
public Enumeration<String> getAttributeNames()
HttpSession
Enumeration
of String
objects
containing the names of all the objects bound to this session.
getAttributeNames
in interface HttpSession
Enumeration
of
String
objects specifying the
names of all the objects bound to
this sessionpublic Set<String> getNames()
public long getCookieSetTime()
public long getCreationTime() throws IllegalStateException
HttpSession
getCreationTime
in interface HttpSession
long
specifying
when this session was created,
expressed in
milliseconds since 1/1/1970 GMT
IllegalStateException
- if this method is called on an
invalidated sessionpublic String getId() throws IllegalStateException
HttpSession
getId
in interface HttpSession
IllegalStateException
public String getNodeId()
public String getClusterId()
public long getLastAccessedTime() throws IllegalStateException
HttpSession
Actions that your application takes, such as getting or setting a value associated with the session, do not affect the access time.
getLastAccessedTime
in interface HttpSession
long
representing the last time
the client sent a request associated
with this session, expressed in
milliseconds since 1/1/1970 GMT
IllegalStateException
- if this method is called on an
invalidated sessionpublic int getMaxInactiveInterval()
HttpSession
setMaxInactiveInterval
method.
A negative time indicates the session should never timeout.
getMaxInactiveInterval
in interface HttpSession
HttpSession.setMaxInactiveInterval(int)
public ServletContext getServletContext()
HttpSession
getServletContext
in interface HttpSession
@Deprecated public HttpSessionContext getSessionContext() throws IllegalStateException
getSessionContext
in interface HttpSession
IllegalStateException
@Deprecated public Object getValue(String name) throws IllegalStateException
getAttribute(java.lang.String)
getValue
in interface HttpSession
name
- a string specifying the name of the object
IllegalStateException
- if this method is called on an
invalidated session@Deprecated public String[] getValueNames() throws IllegalStateException
getAttributeNames()
getValueNames
in interface HttpSession
String
objects specifying the
names of all the objects bound to
this session
IllegalStateException
- if this method is called on an
invalidated sessionprotected boolean access(long time)
protected void complete()
protected void timeout() throws IllegalStateException
IllegalStateException
public void invalidate() throws IllegalStateException
HttpSession
invalidate
in interface HttpSession
IllegalStateException
- if this method is called on an
already invalidated sessionprotected void doInvalidate() throws IllegalStateException
IllegalStateException
public void clearAttributes()
public boolean isIdChanged()
public boolean isNew() throws IllegalStateException
HttpSession
true
if the client does not yet know about the
session or if the client chooses not to join the session. For
example, if the server used only cookie-based sessions, and
the client had disabled the use of cookies, then a session would
be new on each request.
isNew
in interface HttpSession
true
if the
server has created a session,
but the client has not yet joined
IllegalStateException
- if this method is called on an
already invalidated session@Deprecated public void putValue(String name, Object value) throws IllegalStateException
setAttribute(java.lang.String, java.lang.Object)
putValue
in interface HttpSession
name
- the name to which the object is bound;
cannot be nullvalue
- the object to be bound; cannot be null
IllegalStateException
- if this method is called on an
invalidated sessionpublic void removeAttribute(String name)
HttpSession
After this method executes, and if the object
implements HttpSessionBindingListener
,
the container calls
HttpSessionBindingListener.valueUnbound
. The container
then notifies any HttpSessionAttributeListener
s in the web
application.
removeAttribute
in interface HttpSession
name
- the name of the object to
remove from this session@Deprecated public void removeValue(String name) throws IllegalStateException
removeAttribute(java.lang.String)
removeValue
in interface HttpSession
name
- the name of the object to
remove from this session
IllegalStateException
- if this method is called on an
invalidated sessionprotected Object doPutOrRemove(String name, Object value)
protected Object doGet(String name)
public void setAttribute(String name, Object value)
HttpSession
After this method executes, and if the new object
implements HttpSessionBindingListener
,
the container calls
HttpSessionBindingListener.valueBound
. The container then
notifies any HttpSessionAttributeListener
s in the web
application.
If an object was already bound to this session of this name
that implements HttpSessionBindingListener
, its
HttpSessionBindingListener.valueUnbound
method is called.
If the value passed in is null, this has the same effect as calling
removeAttribute()
.
setAttribute
in interface HttpSession
name
- the name to which the object is bound;
cannot be nullvalue
- the object to be bound
public void setIdChanged(boolean changed)
public void setMaxInactiveInterval(int secs)
HttpSession
setMaxInactiveInterval
in interface HttpSession
secs
- An integer specifying the number
of secondspublic String toString()
toString
in class Object
public void bindValue(String name, Object value)
public boolean isValid()
protected void cookieSet()
public int getRequests()
public void setRequests(int requests)
public void unbindValue(String name, Object value)
public void willPassivate()
public void didActivate()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |