|
||||||||||
| 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
IllegalStateExceptionpublic AbstractSession getSession()
getSession in interface AbstractSessionManager.SessionIfpublic long getAccessed()
public Object getAttribute(String name)
HttpSessionnull if no object is bound under the name.
getAttribute in interface HttpSessionname - a string specifying the name of the object
public int getAttributes()
public Enumeration<String> getAttributeNames()
HttpSessionEnumeration of String objects
containing the names of all the objects bound to this session.
getAttributeNames in interface HttpSessionEnumeration 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 HttpSessionlong specifying
when this session was created,
expressed in
milliseconds since 1/1/1970 GMT
IllegalStateException - if this method is called on an
invalidated session
public String getId()
throws IllegalStateException
HttpSession
getId in interface HttpSessionIllegalStateExceptionpublic String getNodeId()
public String getClusterId()
public long getLastAccessedTime()
throws IllegalStateException
HttpSessionActions that your application takes, such as getting or setting a value associated with the session, do not affect the access time.
getLastAccessedTime in interface HttpSessionlong
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()
HttpSessionsetMaxInactiveInterval method.
A negative time indicates the session should never timeout.
getMaxInactiveInterval in interface HttpSessionHttpSession.setMaxInactiveInterval(int)public ServletContext getServletContext()
HttpSession
getServletContext in interface HttpSession
@Deprecated
public HttpSessionContext getSessionContext()
throws IllegalStateException
getSessionContext in interface HttpSessionIllegalStateException
@Deprecated
public Object getValue(String name)
throws IllegalStateException
getAttribute(java.lang.String)
getValue in interface HttpSessionname - 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 HttpSessionString
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 HttpSessionIllegalStateException - if this method is called on an
already invalidated session
protected void doInvalidate()
throws IllegalStateException
IllegalStateExceptionpublic void clearAttributes()
public boolean isIdChanged()
public boolean isNew()
throws IllegalStateException
HttpSessiontrue 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 HttpSessiontrue 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 HttpSessionname - 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)
HttpSessionAfter this method executes, and if the object
implements HttpSessionBindingListener,
the container calls
HttpSessionBindingListener.valueUnbound. The container
then notifies any HttpSessionAttributeListeners in the web
application.
removeAttribute in interface HttpSessionname - 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 HttpSessionname - the name of the object to
remove from this session
IllegalStateException - if this method is called on an
invalidated session
protected Object doPutOrRemove(String name,
Object value)
protected Object doGet(String name)
public void setAttribute(String name,
Object value)
HttpSessionAfter this method executes, and if the new object
implements HttpSessionBindingListener,
the container calls
HttpSessionBindingListener.valueBound. The container then
notifies any HttpSessionAttributeListeners 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 HttpSessionsecs - 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 | |||||||||