Class HttpSessionContextImpl
- java.lang.Object
-
- com.tangosol.util.Base
-
- com.tangosol.coherence.servlet.api23.HttpSessionContextImpl
-
- All Implemented Interfaces:
javax.servlet.http.HttpSessionContext
public class HttpSessionContextImpl extends Base implements javax.servlet.http.HttpSessionContext
Deprecated.As of Java(tm) Servlet API 2.1 for security reasons, with no replacement. This interface will be removed in a future version of this API.HttpSessionContext implementation. This implementation does nothing, as specified by Servlet 2.1 and later.- Version:
- Coherence 3.4.1
- Author:
- jh 2008.10.15
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class com.tangosol.util.Base
Base.LoggingWriter
-
-
Constructor Summary
Constructors Constructor Description HttpSessionContextImpl(SessionHelper helper, boolean fStrict)
Deprecated.Construct an HttpSessionContext implementation.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description protected String
getDescription()
Deprecated.Returns a string representation of this object's attributes.Enumeration
getIds()
Deprecated.As of Java Servlet API 2.1 with no replacement.javax.servlet.http.HttpSession
getSession(String sId)
Deprecated.As of Java Servlet API 2.1 with no replacement.protected SessionHelper
getSessionHelper()
Deprecated.Get the SessionHelper for this ServletContext wrapper.protected boolean
isStrict()
Deprecated.Determine if the context strictly enforce the Servlet spec (deprecates this interface).String
toString()
Deprecated.Returns a string representation of the object.-
Methods inherited from class com.tangosol.util.Base
azzert, azzert, azzert, azzertFailed, breakLines, breakLines, capitalize, checkNotEmpty, checkNotNull, checkRange, computeSafeWaitTime, decimalValue, dup, dup, ensureBigDecimal, ensureClassLoader, ensureRuntimeException, ensureRuntimeException, equals, equalsDeep, err, err, err, err, err, escape, formatDateTime, getCallerStackFrame, getCommonMonitor, getCommonMonitor, getCommonMonitor, getContextClassLoader, getContextClassLoader, getDeepMessage, getErr, getLastSafeTimeMillis, getLog, getMaxDecDigits, getMaxHexDigits, getOriginalException, getOut, getProcessRandom, getRandom, getRandomBinary, getRandomBinary, getRandomString, getSafeTimeMillis, getStackFrame, getStackFrames, getStackTrace, getStackTrace, getStackTrace, getThreadFactory, getTimeZone, getUpTimeMillis, hashCode, hexValue, indentString, indentString, isDecimal, isHex, isLogEcho, isOctal, log, log, log, log, log, makeInteger, makeLong, makeThread, mergeArray, mergeBooleanArray, mergeByteArray, mergeCharArray, mergeDoubleArray, mergeFloatArray, mergeIntArray, mergeLongArray, mod, mod, octalValue, out, out, out, out, out, pad, parseBandwidth, parseBandwidth, parseDelimitedString, parseHex, parseHex, parseMemorySize, parseMemorySize, parsePercentage, parseTime, parseTime, parseTimeNanos, parseTimeNanos, printStackTrace, randomize, randomize, randomize, randomize, read, read, read, read, read, read, read, replace, setErr, setLog, setLogEcho, setOut, sleep, toBandwidthString, toBandwidthString, toCharEscape, toCrc, toCrc, toCrc, toCrc, toCrc, toDecString, toDelimitedString, toDelimitedString, toDelimitedString, toDelimitedString, toHex, toHex, toHexDump, toHexEscape, toHexEscape, toHexEscape, toHexEscape, toHexString, toMemorySizeString, toMemorySizeString, toQuotedCharEscape, toQuotedStringEscape, toSqlString, toString, toString, toStringEscape, toUnicodeEscape, trace, trace, trace, trace, trace, trace, trace, trace, trace, truncateString, truncateString, wait
-
-
-
-
Constructor Detail
-
HttpSessionContextImpl
public HttpSessionContextImpl(SessionHelper helper, boolean fStrict)
Deprecated.Construct an HttpSessionContext implementation.- Parameters:
helper
- the SessionHelper object for this applicationfStrict
- true to enforce the deprecation; false to allow session enumeration
-
-
Method Detail
-
getIds
public Enumeration getIds()
Deprecated.As of Java Servlet API 2.1 with no replacement. This method must return an empty Enumeration and will be removed in a future version of this API.This method does nothing.- Specified by:
getIds
in interfacejavax.servlet.http.HttpSessionContext
- Returns:
- an Enumeration of zero elements
-
getSession
public javax.servlet.http.HttpSession getSession(String sId)
Deprecated.As of Java Servlet API 2.1 with no replacement. This method must return null and will be removed in a future version of this API.This method does nothing.- Specified by:
getSession
in interfacejavax.servlet.http.HttpSessionContext
- Parameters:
sId
- an HttpSession id- Returns:
- always returns null
-
toString
public String toString()
Deprecated.Returns a string representation of the object.
-
getDescription
protected String getDescription()
Deprecated.Returns a string representation of this object's attributes.- Returns:
- a string representation of this object's attributes
-
getSessionHelper
protected SessionHelper getSessionHelper()
Deprecated.Get the SessionHelper for this ServletContext wrapper.- Returns:
- the SessionHelper for this ServletContext wrapper
-
isStrict
protected boolean isStrict()
Deprecated.Determine if the context strictly enforce the Servlet spec (deprecates this interface).- Returns:
- true if the context strictly enforce the Servlet spec; false means that the context will implement the deprecated functionality
-
-