|
||||||||||
| 上一个类 下一个类 | 框架 无框架 | |||||||||
| 摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 | |||||||||
java.lang.Objectorg.eclipse.jetty.server.session.AbstractSession
public abstract class AbstractSession
Implements HttpSession from the javax.servlet package.
| 构造方法摘要 | |
|---|---|
protected |
AbstractSession(AbstractSessionManager abstractSessionManager,
HttpServletRequest request)
|
protected |
AbstractSession(AbstractSessionManager abstractSessionManager,
long created,
long accessed,
String clusterId)
|
| 方法摘要 | |
|---|---|
protected boolean |
access(long time)
|
protected void |
addAttributes(Map<String,Object> map)
|
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. |
protected Map<String,Object> |
getAttributeMap()
|
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()
已过时。 |
Object |
getValue(String name)
已过时。 As of Version 2.2, this method is replaced by getAttribute(java.lang.String) |
String[] |
getValueNames()
已过时。 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)
已过时。 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)
已过时。 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 |
setLastAccessedTime(long time)
|
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()
|
| 从类 java.lang.Object 继承的方法 |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| 构造方法详细信息 |
|---|
protected AbstractSession(AbstractSessionManager abstractSessionManager,
HttpServletRequest request)
protected AbstractSession(AbstractSessionManager abstractSessionManager,
long created,
long accessed,
String clusterId)
| 方法详细信息 |
|---|
protected void checkValid()
throws IllegalStateException
IllegalStateExceptionpublic AbstractSession getSession()
AbstractSessionManager.SessionIf 中的 getSessionpublic long getAccessed()
public Object getAttribute(String name)
HttpSession 复制的描述null if no object is bound under the name.
HttpSession 中的 getAttributename - 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.
HttpSession 中的 getAttributeNamesEnumeration 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 复制的描述
HttpSession 中的 getCreationTimelong 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 复制的描述
HttpSession 中的 getIdIllegalStateExceptionpublic 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.
HttpSession 中的 getLastAccessedTimelong
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 void setLastAccessedTime(long time)
public int getMaxInactiveInterval()
HttpSession 复制的描述setMaxInactiveInterval method.
A return value of zero or less indicates that the session will never timeout.
HttpSession 中的 getMaxInactiveIntervalHttpSession.setMaxInactiveInterval(int)public ServletContext getServletContext()
HttpSession 复制的描述
HttpSession 中的 getServletContext
@Deprecated
public HttpSessionContext getSessionContext()
throws IllegalStateException
HttpSession 中的 getSessionContextIllegalStateException
@Deprecated
public Object getValue(String name)
throws IllegalStateException
getAttribute(java.lang.String)
HttpSession 中的 getValuename - 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()
HttpSession 中的 getValueNamesString
objects specifying the
names of all the objects bound to
this session
IllegalStateException - if this method is called on an
invalidated sessionprotected Map<String,Object> getAttributeMap()
protected void addAttributes(Map<String,Object> map)
protected boolean access(long time)
protected void complete()
protected void timeout()
throws IllegalStateException
IllegalStateException
public void invalidate()
throws IllegalStateException
HttpSession 复制的描述
HttpSession 中的 invalidateIllegalStateException - 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
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.
HttpSession 中的 isNewtrue 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)
HttpSession 中的 putValuename - 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 HttpSessionAttributeListeners in the web
application.
HttpSession 中的 removeAttributename - the name of the object to
remove from this session
@Deprecated
public void removeValue(String name)
throws IllegalStateException
removeAttribute(java.lang.String)
HttpSession 中的 removeValuename - 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)
HttpSession 复制的描述After 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().
HttpSession 中的 setAttribute
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 复制的描述An interval value of zero or less indicates that the session should never timeout.
HttpSession 中的 setMaxInactiveIntervalsecs - An integer specifying the number
of secondspublic String toString()
Object 中的 toString
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()
|
||||||||||
| 上一个类 下一个类 | 框架 无框架 | |||||||||
| 摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 | |||||||||