|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Object | +--oracle.portal.provider.v1.http.ServletProviderSession
ServletProviderSession is an implementation of the ProviderSession that uses an HttpSession as the underlying session store. A single ServletProviderSession object is created per HttpSession. The ServletProviderSession is simply a wrapper that delegates session storage to the HttpSession and provides a mechanism for retrieving the attached session.
Sessions, if used, must be established in Provider.initSession(). Sessions are maintained on a ProviderUser basis. The ProviderUser interface is used to create and reacquire the session. A convenience method for reacquiring the session is available to renderers in the PortletRenderRequest object.
| Field Summary | |
static java.lang.String |
SESSION_ID
|
| Method Summary | |
static ServletProviderSession |
getAttachedSession(javax.servlet.http.HttpServletRequest request)
|
static ServletProviderSession |
getAttachedSession(javax.servlet.http.HttpServletRequest request,
boolean create,
int timeout)
|
java.lang.Object |
getAttribute(java.lang.String name)
Returns the object bound with the specified name in this session, or null if no object is bound under the name. |
java.util.Enumeration |
getAttributeNames()
Returns an Enumeration of String objects
containing the names of all the objects bound to this session. |
long |
getCreationTime()
Returns the time when this session was created, measured in milliseconds since midnight January 1, 1970 GMT. |
java.lang.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. |
int |
getMaxInactiveInterval()
Returns the maximum time interval, in seconds, that the servlet engine will keep this session open between client requests. |
java.lang.Object |
getValue(java.lang.String name)
Deprecated. As of Version 2.2, this method is replaced by getAttribute(java.lang.String). |
java.lang.String[] |
getValueNames()
Deprecated. As of Version 2.2, this method is replaced by getAttributeNames() |
void |
invalidate()
Invalidates this session and unbinds any objects bound to it. |
boolean |
isNew()
Returns true if the client does not yet know about the
session or if the client chooses not to join the session. |
void |
putValue(java.lang.String name,
java.lang.Object value)
Deprecated. As of Version 2.2, this method is replaced by setAttribute(java.lang.String, java.lang.Object) |
void |
removeAttribute(java.lang.String name)
Removes the object bound with the specified name from this session. |
void |
removeValue(java.lang.String name)
Deprecated. As of Version 2.2, this method is replaced by setAttribute(java.lang.String, java.lang.Object) |
void |
setAttribute(java.lang.String name,
java.lang.Object value)
Binds an object to this session, using the name specified. |
void |
valueBound(javax.servlet.http.HttpSessionBindingEvent event)
|
void |
valueUnbound(javax.servlet.http.HttpSessionBindingEvent event)
The ServletProviderSession object has been removed from the session. |
| Methods inherited from class java.lang.Object |
equals,
getClass,
hashCode,
notify,
notifyAll,
toString,
wait,
wait,
wait |
| Field Detail |
public static final java.lang.String SESSION_ID
| Method Detail |
public static ServletProviderSession getAttachedSession(javax.servlet.http.HttpServletRequest request)
public static ServletProviderSession getAttachedSession(javax.servlet.http.HttpServletRequest request,
boolean create,
int timeout)
public long getCreationTime()
throws java.lang.IllegalStateException
long specifying
when this session was created,
expressed in
milliseconds since 1/1/1970 GMT
public java.lang.String getId()
throws java.lang.IllegalStateException
public long getLastAccessedTime()
throws java.lang.IllegalStateException
Actions that your application takes, such as getting or setting a value associated with the session, do not affect the access time.
long
representing the last time
the client sent a request associated
with this session, expressed in
milliseconds since 1/1/1970 GMTpublic int getMaxInactiveInterval()
setMaxInactiveInterval method.
public java.lang.Object getAttribute(java.lang.String name)
throws java.lang.IllegalStateException
null if no object is bound under the name.name - a string specifying the name of the object
public java.lang.Object getValue(java.lang.String name)
throws java.lang.IllegalStateException
getAttribute(java.lang.String).
name - a string specifying the name of the object
public java.util.Enumeration getAttributeNames()
throws java.lang.IllegalStateException
Enumeration of String objects
containing the names of all the objects bound to this session.Enumeration of
String objects specifying the
names of all the objects bound to
this session
public java.lang.String[] getValueNames()
throws java.lang.IllegalStateException
getAttributeNames()
String
objects specifying the
names of all the objects bound to
this session
public void setAttribute(java.lang.String name,
java.lang.Object value)
throws java.lang.IllegalStateException
After this method executes, and if the object
implements HttpSessionBindingListener,
the container calls
HttpSessionBindingListener.valueBound.
name - the name to which the object is bound;
cannot be nullvalue - the object to be bound; cannot be null
public void putValue(java.lang.String name,
java.lang.Object value)
throws java.lang.IllegalStateException
setAttribute(java.lang.String, java.lang.Object)
name - the name to which the object is bound;
cannot be nullvalue - the object to be bound; cannot be null
public void removeAttribute(java.lang.String name)
throws java.lang.IllegalStateException
After this method executes, and if the object
implements HttpSessionBindingListener,
the container calls
HttpSessionBindingListener.valueUnbound.
name - the name of the object to
remove from this session
public void removeValue(java.lang.String name)
throws java.lang.IllegalStateException
setAttribute(java.lang.String, java.lang.Object)
name - the name of the object to
remove from this session
public void invalidate()
throws java.lang.IllegalStateException
public boolean isNew()
throws java.lang.IllegalStateException
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.true if the
server has created a session,
but the client has not yet joinedpublic void valueBound(javax.servlet.http.HttpSessionBindingEvent event)
public void valueUnbound(javax.servlet.http.HttpSessionBindingEvent event)
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||