java.lang.Object | |
↳ | com.atlassian.jira.util.velocity.HttpSessionBackedVelocityRequestSession |
An implementation of the VelocityRequestSession that is backed by a HttpSession All methods are a direct call through to the underlying HttpSession. This will only create the request if necessary.
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Returns the object bound with the specified name in this session, or null if no object is bound under the name.
| |||||||||||
Returns an Enumeration of String objects containing the names of all the objects bound to this session.
| |||||||||||
Returns a string containing the unique identifier assigned to this session.
| |||||||||||
Invalidates this session and unbinds any objects bound to it.
| |||||||||||
Removes the object bound with the specified name from this session.
| |||||||||||
Binds an object to this session, using the name specified.
|
[Expand]
Inherited Methods | |||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
![]() | |||||||||||||||||||||||
![]()
|
Returns the object bound with the specified name in this session, or null if no object is bound under the name.
s | a string specifying the name of the object |
---|
Returns an Enumeration of String objects containing the names of all the objects bound to this session.
Returns a string containing the unique identifier assigned to this session.
Invalidates this session and unbinds any objects bound to it.
Removes the object bound with the specified name from this session. If the session does not have an object bound with the specified name, this method does nothing.
s | the name of the object to remove from this session |
---|
Binds an object to this session, using the name specified. If an object of the same name is already bound to the session, the object is replaced.
s | the name to which the object is bound; cannot be null |
---|---|
o | the object to be bound; cannot be null |