Class DummyRequest
- java.lang.Object
-
- com.ibm.wsspi.webcontainer.servlet.DummyRequest
-
- All Implemented Interfaces:
IExtendedRequest
,jakarta.servlet.http.HttpServletRequest
,jakarta.servlet.ServletRequest
public class DummyRequest extends java.lang.Object implements jakarta.servlet.http.HttpServletRequest, IExtendedRequest
-
-
Constructor Summary
Constructors Constructor Description DummyRequest()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addParameter(java.lang.String name, java.lang.String[] values)
void
aggregateQueryStringParams(java.lang.String additionalQueryString, boolean setQS)
void
attributeAdded(java.lang.String key, java.lang.Object newVal)
void
attributeRemoved(java.lang.String key, java.lang.Object oldVal)
void
attributeReplaced(java.lang.String key, java.lang.Object oldVal)
boolean
authenticate(jakarta.servlet.http.HttpServletResponse arg0)
void
closeResponseOutput()
java.util.HashMap
deserializeInputStreamData(byte[][] input)
void
destroy()
void
finish()
void
finishAndDestroyConnectionContext()
java.util.List
getAllCookieValues(java.lang.String cookieName)
Get the values for the cookie specified.jakarta.servlet.AsyncContext
getAsyncContext()
java.lang.Object
getAttribute(java.lang.String arg0)
java.util.Enumeration<java.lang.String>
getAttributeNames()
java.lang.String
getAuthType()
java.lang.String
getCharacterEncoding()
int
getContentLength()
java.lang.String
getContentType()
java.lang.String
getContextPath()
jakarta.servlet.http.Cookie[]
getCookies()
byte[]
getCookieValueAsBytes(java.lang.String cookieName)
Returns a cookie value as byteslong
getDateHeader(java.lang.String arg0)
jakarta.servlet.DispatcherType
getDispatcherType()
java.lang.String
getEncodedRequestURI()
returns url with encoded session information of the incoming requestjava.lang.String
getHeader(java.lang.String arg0)
java.util.Enumeration<java.lang.String>
getHeaderNames()
java.util.Enumeration<java.lang.String>
getHeaders(java.lang.String arg0)
jakarta.servlet.ServletInputStream
getInputStream()
java.util.HashMap
getInputStreamData()
int
getIntHeader(java.lang.String arg0)
IRequest
getIRequest()
java.lang.String
getLocalAddr()
java.util.Locale
getLocale()
java.util.Enumeration<java.util.Locale>
getLocales()
java.lang.String
getLocalName()
int
getLocalPort()
java.lang.String
getMethod()
java.lang.String
getParameter(java.lang.String arg0)
java.util.Map<java.lang.String,java.lang.String[]>
getParameterMap()
java.util.Enumeration<java.lang.String>
getParameterNames()
java.lang.String[]
getParameterValues(java.lang.String arg0)
jakarta.servlet.http.Part
getPart(java.lang.String arg0)
java.util.Collection<jakarta.servlet.http.Part>
getParts()
java.lang.String
getPathInfo()
java.lang.String
getPathTranslated()
java.lang.String
getProtocol()
java.lang.String
getQueryString()
java.io.BufferedReader
getReader()
java.lang.String
getReaderEncoding()
java.lang.String
getRealPath(java.lang.String arg0)
java.lang.String
getRemoteAddr()
java.lang.String
getRemoteHost()
int
getRemotePort()
java.lang.String
getRemoteUser()
jakarta.servlet.RequestDispatcher
getRequestDispatcher(java.lang.String arg0)
java.lang.String
getRequestedSessionId()
java.lang.String
getRequestURI()
java.lang.StringBuffer
getRequestURL()
IExtendedResponse
getResponse()
boolean
getRunningCollaborators()
Returns boolean that indicates if collaborators are running.java.lang.String
getScheme()
java.lang.String
getServerName()
int
getServerPort()
jakarta.servlet.ServletContext
getServletContext()
java.lang.String
getServletPath()
jakarta.servlet.http.HttpSession
getSession()
jakarta.servlet.http.HttpSession
getSession(boolean arg0)
java.lang.Object
getSessionAffinityContext()
Get the SessionAffinityContext for this requestbyte[]
getSSLId()
Returns incoming SSL session id of the request.java.lang.String
getUpdatedSessionId()
returns sessionId that is being generated for this requestjava.security.Principal
getUserPrincipal()
IWebAppDispatcherContext
getWebAppDispatcherContext()
void
initForNextRequest(IRequest req)
boolean
isAsyncStarted()
boolean
isAsyncSupported()
boolean
isRequestedSessionIdFromCookie()
boolean
isRequestedSessionIdFromUrl()
boolean
isRequestedSessionIdFromURL()
boolean
isRequestedSessionIdValid()
boolean
isSecure()
boolean
isUserInRole(java.lang.String arg0)
void
login(java.lang.String arg0, java.lang.String arg1)
void
logout()
void
pushParameterStack()
void
removeAttribute(java.lang.String arg0)
void
removeHeader(java.lang.String header)
void
removeQSFromList()
byte[][]
serializeInputStreamData(java.util.Map isd)
Serialize the Map object of InputStreamData.void
setAsyncStarted(boolean b)
void
setAsyncSupported(boolean asyncSupported)
void
setAttribute(java.lang.String arg0, java.lang.Object arg1)
void
setCharacterEncoding(java.lang.String arg0)
void
setDispatcherType(jakarta.servlet.DispatcherType dispatcherType)
void
setInputStreamData(java.util.HashMap inStreamInfo)
void
setMethod(java.lang.String method)
void
setQueryString(java.lang.String qs)
void
setResponse(IExtendedResponse extResp)
void
setRunningCollaborators(boolean runningCollaborators)
Sets boolean used to indicate to session manager if collaborators are running.void
setSessionAffinityContext(java.lang.Object sac)
Sets SessionAffinityContext for this requestvoid
setSessionId(java.lang.String id)
Sets sessionId that is being generated for this requestvoid
setValuesIfMultiReadofPostdataEnabled()
void
setWebAppDispatcherContext(IWebAppDispatcherContext ctx)
long
sizeInputStreamData(java.util.Map isd)
returns estimated size of serialized InputStreamData this code does not consider that the length in long overwraps.void
start()
jakarta.servlet.AsyncContext
startAsync()
jakarta.servlet.AsyncContext
startAsync(jakarta.servlet.ServletRequest arg0, jakarta.servlet.ServletResponse arg1)
-
-
-
Method Detail
-
authenticate
public boolean authenticate(jakarta.servlet.http.HttpServletResponse arg0)
- Specified by:
authenticate
in interfacejakarta.servlet.http.HttpServletRequest
-
getAuthType
public java.lang.String getAuthType()
- Specified by:
getAuthType
in interfacejakarta.servlet.http.HttpServletRequest
-
getContextPath
public java.lang.String getContextPath()
- Specified by:
getContextPath
in interfacejakarta.servlet.http.HttpServletRequest
-
getCookies
public jakarta.servlet.http.Cookie[] getCookies()
- Specified by:
getCookies
in interfacejakarta.servlet.http.HttpServletRequest
-
getDateHeader
public long getDateHeader(java.lang.String arg0)
- Specified by:
getDateHeader
in interfacejakarta.servlet.http.HttpServletRequest
-
getHeader
public java.lang.String getHeader(java.lang.String arg0)
- Specified by:
getHeader
in interfacejakarta.servlet.http.HttpServletRequest
-
getHeaderNames
public java.util.Enumeration<java.lang.String> getHeaderNames()
- Specified by:
getHeaderNames
in interfacejakarta.servlet.http.HttpServletRequest
-
getHeaders
public java.util.Enumeration<java.lang.String> getHeaders(java.lang.String arg0)
- Specified by:
getHeaders
in interfacejakarta.servlet.http.HttpServletRequest
-
getIntHeader
public int getIntHeader(java.lang.String arg0)
- Specified by:
getIntHeader
in interfacejakarta.servlet.http.HttpServletRequest
-
getMethod
public java.lang.String getMethod()
- Specified by:
getMethod
in interfacejakarta.servlet.http.HttpServletRequest
-
getPart
public jakarta.servlet.http.Part getPart(java.lang.String arg0)
- Specified by:
getPart
in interfacejakarta.servlet.http.HttpServletRequest
-
getParts
public java.util.Collection<jakarta.servlet.http.Part> getParts()
- Specified by:
getParts
in interfacejakarta.servlet.http.HttpServletRequest
-
getPathInfo
public java.lang.String getPathInfo()
- Specified by:
getPathInfo
in interfacejakarta.servlet.http.HttpServletRequest
- Specified by:
getPathInfo
in interfaceIExtendedRequest
-
getPathTranslated
public java.lang.String getPathTranslated()
- Specified by:
getPathTranslated
in interfacejakarta.servlet.http.HttpServletRequest
-
getQueryString
public java.lang.String getQueryString()
- Specified by:
getQueryString
in interfacejakarta.servlet.http.HttpServletRequest
- Specified by:
getQueryString
in interfaceIExtendedRequest
-
getRemoteUser
public java.lang.String getRemoteUser()
- Specified by:
getRemoteUser
in interfacejakarta.servlet.http.HttpServletRequest
-
getRequestURI
public java.lang.String getRequestURI()
- Specified by:
getRequestURI
in interfacejakarta.servlet.http.HttpServletRequest
- Specified by:
getRequestURI
in interfaceIExtendedRequest
-
getRequestURL
public java.lang.StringBuffer getRequestURL()
- Specified by:
getRequestURL
in interfacejakarta.servlet.http.HttpServletRequest
-
getRequestedSessionId
public java.lang.String getRequestedSessionId()
- Specified by:
getRequestedSessionId
in interfacejakarta.servlet.http.HttpServletRequest
-
getServletPath
public java.lang.String getServletPath()
- Specified by:
getServletPath
in interfacejakarta.servlet.http.HttpServletRequest
-
getSession
public jakarta.servlet.http.HttpSession getSession()
- Specified by:
getSession
in interfacejakarta.servlet.http.HttpServletRequest
-
getSession
public jakarta.servlet.http.HttpSession getSession(boolean arg0)
- Specified by:
getSession
in interfacejakarta.servlet.http.HttpServletRequest
-
getUserPrincipal
public java.security.Principal getUserPrincipal()
- Specified by:
getUserPrincipal
in interfacejakarta.servlet.http.HttpServletRequest
-
isRequestedSessionIdFromCookie
public boolean isRequestedSessionIdFromCookie()
- Specified by:
isRequestedSessionIdFromCookie
in interfacejakarta.servlet.http.HttpServletRequest
-
isRequestedSessionIdFromURL
public boolean isRequestedSessionIdFromURL()
- Specified by:
isRequestedSessionIdFromURL
in interfacejakarta.servlet.http.HttpServletRequest
-
isRequestedSessionIdFromUrl
public boolean isRequestedSessionIdFromUrl()
- Specified by:
isRequestedSessionIdFromUrl
in interfacejakarta.servlet.http.HttpServletRequest
-
isRequestedSessionIdValid
public boolean isRequestedSessionIdValid()
- Specified by:
isRequestedSessionIdValid
in interfacejakarta.servlet.http.HttpServletRequest
-
isUserInRole
public boolean isUserInRole(java.lang.String arg0)
- Specified by:
isUserInRole
in interfacejakarta.servlet.http.HttpServletRequest
-
login
public void login(java.lang.String arg0, java.lang.String arg1) throws jakarta.servlet.ServletException
- Specified by:
login
in interfacejakarta.servlet.http.HttpServletRequest
- Throws:
jakarta.servlet.ServletException
-
logout
public void logout() throws jakarta.servlet.ServletException
- Specified by:
logout
in interfacejakarta.servlet.http.HttpServletRequest
- Throws:
jakarta.servlet.ServletException
-
getAsyncContext
public jakarta.servlet.AsyncContext getAsyncContext()
- Specified by:
getAsyncContext
in interfaceIExtendedRequest
- Specified by:
getAsyncContext
in interfacejakarta.servlet.ServletRequest
-
getAttribute
public java.lang.Object getAttribute(java.lang.String arg0)
- Specified by:
getAttribute
in interfacejakarta.servlet.ServletRequest
-
getAttributeNames
public java.util.Enumeration<java.lang.String> getAttributeNames()
- Specified by:
getAttributeNames
in interfacejakarta.servlet.ServletRequest
-
getCharacterEncoding
public java.lang.String getCharacterEncoding()
- Specified by:
getCharacterEncoding
in interfacejakarta.servlet.ServletRequest
-
getContentLength
public int getContentLength()
- Specified by:
getContentLength
in interfacejakarta.servlet.ServletRequest
-
getContentType
public java.lang.String getContentType()
- Specified by:
getContentType
in interfacejakarta.servlet.ServletRequest
-
getDispatcherType
public jakarta.servlet.DispatcherType getDispatcherType()
- Specified by:
getDispatcherType
in interfacejakarta.servlet.ServletRequest
-
getInputStream
public jakarta.servlet.ServletInputStream getInputStream() throws java.io.IOException
- Specified by:
getInputStream
in interfacejakarta.servlet.ServletRequest
- Throws:
java.io.IOException
-
getLocalAddr
public java.lang.String getLocalAddr()
- Specified by:
getLocalAddr
in interfacejakarta.servlet.ServletRequest
-
getLocalName
public java.lang.String getLocalName()
- Specified by:
getLocalName
in interfacejakarta.servlet.ServletRequest
-
getLocalPort
public int getLocalPort()
- Specified by:
getLocalPort
in interfacejakarta.servlet.ServletRequest
-
getLocale
public java.util.Locale getLocale()
- Specified by:
getLocale
in interfacejakarta.servlet.ServletRequest
-
getLocales
public java.util.Enumeration<java.util.Locale> getLocales()
- Specified by:
getLocales
in interfacejakarta.servlet.ServletRequest
-
getParameter
public java.lang.String getParameter(java.lang.String arg0)
- Specified by:
getParameter
in interfacejakarta.servlet.ServletRequest
-
getParameterMap
public java.util.Map<java.lang.String,java.lang.String[]> getParameterMap()
- Specified by:
getParameterMap
in interfacejakarta.servlet.ServletRequest
-
getParameterNames
public java.util.Enumeration<java.lang.String> getParameterNames()
- Specified by:
getParameterNames
in interfacejakarta.servlet.ServletRequest
-
getParameterValues
public java.lang.String[] getParameterValues(java.lang.String arg0)
- Specified by:
getParameterValues
in interfacejakarta.servlet.ServletRequest
-
getProtocol
public java.lang.String getProtocol()
- Specified by:
getProtocol
in interfacejakarta.servlet.ServletRequest
-
getReader
public java.io.BufferedReader getReader() throws java.io.IOException
- Specified by:
getReader
in interfacejakarta.servlet.ServletRequest
- Throws:
java.io.IOException
-
getRealPath
public java.lang.String getRealPath(java.lang.String arg0)
- Specified by:
getRealPath
in interfacejakarta.servlet.ServletRequest
-
getRemoteAddr
public java.lang.String getRemoteAddr()
- Specified by:
getRemoteAddr
in interfacejakarta.servlet.ServletRequest
-
getRemoteHost
public java.lang.String getRemoteHost()
- Specified by:
getRemoteHost
in interfacejakarta.servlet.ServletRequest
-
getRemotePort
public int getRemotePort()
- Specified by:
getRemotePort
in interfacejakarta.servlet.ServletRequest
-
getRequestDispatcher
public jakarta.servlet.RequestDispatcher getRequestDispatcher(java.lang.String arg0)
- Specified by:
getRequestDispatcher
in interfacejakarta.servlet.ServletRequest
-
getScheme
public java.lang.String getScheme()
- Specified by:
getScheme
in interfacejakarta.servlet.ServletRequest
-
getServerName
public java.lang.String getServerName()
- Specified by:
getServerName
in interfacejakarta.servlet.ServletRequest
-
getServerPort
public int getServerPort()
- Specified by:
getServerPort
in interfacejakarta.servlet.ServletRequest
-
getServletContext
public jakarta.servlet.ServletContext getServletContext()
- Specified by:
getServletContext
in interfacejakarta.servlet.ServletRequest
-
isAsyncStarted
public boolean isAsyncStarted()
- Specified by:
isAsyncStarted
in interfacejakarta.servlet.ServletRequest
-
isAsyncSupported
public boolean isAsyncSupported()
- Specified by:
isAsyncSupported
in interfacejakarta.servlet.ServletRequest
-
isSecure
public boolean isSecure()
- Specified by:
isSecure
in interfacejakarta.servlet.ServletRequest
-
removeAttribute
public void removeAttribute(java.lang.String arg0)
- Specified by:
removeAttribute
in interfacejakarta.servlet.ServletRequest
-
setAttribute
public void setAttribute(java.lang.String arg0, java.lang.Object arg1)
- Specified by:
setAttribute
in interfacejakarta.servlet.ServletRequest
-
setCharacterEncoding
public void setCharacterEncoding(java.lang.String arg0) throws java.io.UnsupportedEncodingException
- Specified by:
setCharacterEncoding
in interfacejakarta.servlet.ServletRequest
- Throws:
java.io.UnsupportedEncodingException
-
startAsync
public jakarta.servlet.AsyncContext startAsync()
- Specified by:
startAsync
in interfacejakarta.servlet.ServletRequest
-
startAsync
public jakarta.servlet.AsyncContext startAsync(jakarta.servlet.ServletRequest arg0, jakarta.servlet.ServletResponse arg1)
- Specified by:
startAsync
in interfacejakarta.servlet.ServletRequest
-
addParameter
public void addParameter(java.lang.String name, java.lang.String[] values)
- Specified by:
addParameter
in interfaceIExtendedRequest
-
aggregateQueryStringParams
public void aggregateQueryStringParams(java.lang.String additionalQueryString, boolean setQS)
- Specified by:
aggregateQueryStringParams
in interfaceIExtendedRequest
-
attributeAdded
public void attributeAdded(java.lang.String key, java.lang.Object newVal)
- Specified by:
attributeAdded
in interfaceIExtendedRequest
-
attributeRemoved
public void attributeRemoved(java.lang.String key, java.lang.Object oldVal)
- Specified by:
attributeRemoved
in interfaceIExtendedRequest
-
attributeReplaced
public void attributeReplaced(java.lang.String key, java.lang.Object oldVal)
- Specified by:
attributeReplaced
in interfaceIExtendedRequest
-
destroy
public void destroy()
- Specified by:
destroy
in interfaceIExtendedRequest
-
finish
public void finish() throws jakarta.servlet.ServletException
- Specified by:
finish
in interfaceIExtendedRequest
- Throws:
jakarta.servlet.ServletException
-
getAllCookieValues
public java.util.List getAllCookieValues(java.lang.String cookieName)
Description copied from interface:IExtendedRequest
Get the values for the cookie specified.- Specified by:
getAllCookieValues
in interfaceIExtendedRequest
- Returns:
- List of values associated with this cookie name.
-
getCookieValueAsBytes
public byte[] getCookieValueAsBytes(java.lang.String cookieName)
Description copied from interface:IExtendedRequest
Returns a cookie value as bytes- Specified by:
getCookieValueAsBytes
in interfaceIExtendedRequest
-
getEncodedRequestURI
public java.lang.String getEncodedRequestURI()
Description copied from interface:IExtendedRequest
returns url with encoded session information of the incoming request- Specified by:
getEncodedRequestURI
in interfaceIExtendedRequest
-
getIRequest
public IRequest getIRequest()
- Specified by:
getIRequest
in interfaceIExtendedRequest
-
getReaderEncoding
public java.lang.String getReaderEncoding()
- Specified by:
getReaderEncoding
in interfaceIExtendedRequest
-
getResponse
public IExtendedResponse getResponse()
- Specified by:
getResponse
in interfaceIExtendedRequest
-
getRunningCollaborators
public boolean getRunningCollaborators()
Description copied from interface:IExtendedRequest
Returns boolean that indicates if collaborators are running. Used by session manager when session security integration is enabled.- Specified by:
getRunningCollaborators
in interfaceIExtendedRequest
-
getSSLId
public byte[] getSSLId()
Description copied from interface:IExtendedRequest
Returns incoming SSL session id of the request. Applicable only for requests over ssl- Specified by:
getSSLId
in interfaceIExtendedRequest
-
getSessionAffinityContext
public java.lang.Object getSessionAffinityContext()
Description copied from interface:IExtendedRequest
Get the SessionAffinityContext for this request- Specified by:
getSessionAffinityContext
in interfaceIExtendedRequest
- Returns:
- SessionAffinityContext object
-
getUpdatedSessionId
public java.lang.String getUpdatedSessionId()
Description copied from interface:IExtendedRequest
returns sessionId that is being generated for this request- Specified by:
getUpdatedSessionId
in interfaceIExtendedRequest
-
getWebAppDispatcherContext
public IWebAppDispatcherContext getWebAppDispatcherContext()
- Specified by:
getWebAppDispatcherContext
in interfaceIExtendedRequest
-
initForNextRequest
public void initForNextRequest(IRequest req)
- Specified by:
initForNextRequest
in interfaceIExtendedRequest
-
pushParameterStack
public void pushParameterStack()
- Specified by:
pushParameterStack
in interfaceIExtendedRequest
-
removeHeader
public void removeHeader(java.lang.String header)
- Specified by:
removeHeader
in interfaceIExtendedRequest
-
removeQSFromList
public void removeQSFromList()
- Specified by:
removeQSFromList
in interfaceIExtendedRequest
-
setMethod
public void setMethod(java.lang.String method)
- Specified by:
setMethod
in interfaceIExtendedRequest
-
setQueryString
public void setQueryString(java.lang.String qs)
- Specified by:
setQueryString
in interfaceIExtendedRequest
-
setResponse
public void setResponse(IExtendedResponse extResp)
- Specified by:
setResponse
in interfaceIExtendedRequest
-
setRunningCollaborators
public void setRunningCollaborators(boolean runningCollaborators)
Description copied from interface:IExtendedRequest
Sets boolean used to indicate to session manager if collaborators are running.- Specified by:
setRunningCollaborators
in interfaceIExtendedRequest
-
setSessionAffinityContext
public void setSessionAffinityContext(java.lang.Object sac)
Description copied from interface:IExtendedRequest
Sets SessionAffinityContext for this request- Specified by:
setSessionAffinityContext
in interfaceIExtendedRequest
-
setSessionId
public void setSessionId(java.lang.String id)
Description copied from interface:IExtendedRequest
Sets sessionId that is being generated for this request- Specified by:
setSessionId
in interfaceIExtendedRequest
-
setWebAppDispatcherContext
public void setWebAppDispatcherContext(IWebAppDispatcherContext ctx)
- Specified by:
setWebAppDispatcherContext
in interfaceIExtendedRequest
-
start
public void start()
- Specified by:
start
in interfaceIExtendedRequest
-
closeResponseOutput
public void closeResponseOutput()
- Specified by:
closeResponseOutput
in interfaceIExtendedRequest
-
finishAndDestroyConnectionContext
public void finishAndDestroyConnectionContext()
- Specified by:
finishAndDestroyConnectionContext
in interfaceIExtendedRequest
-
setAsyncSupported
public void setAsyncSupported(boolean asyncSupported)
- Specified by:
setAsyncSupported
in interfaceIExtendedRequest
-
setDispatcherType
public void setDispatcherType(jakarta.servlet.DispatcherType dispatcherType)
- Specified by:
setDispatcherType
in interfaceIExtendedRequest
-
setAsyncStarted
public void setAsyncStarted(boolean b)
- Specified by:
setAsyncStarted
in interfaceIExtendedRequest
-
getInputStreamData
public java.util.HashMap getInputStreamData() throws java.io.IOException
- Specified by:
getInputStreamData
in interfaceIExtendedRequest
- Throws:
java.io.IOException
-
setInputStreamData
public void setInputStreamData(java.util.HashMap inStreamInfo) throws java.io.IOException
- Specified by:
setInputStreamData
in interfaceIExtendedRequest
- Throws:
java.io.IOException
-
serializeInputStreamData
public byte[][] serializeInputStreamData(java.util.Map isd) throws java.io.IOException, java.io.UnsupportedEncodingException, java.lang.IllegalStateException
Description copied from interface:IExtendedRequest
Serialize the Map object of InputStreamData. The format is as follows: byte[0][] : byte array of long value of INPUT_STREAM_CONTENT_DATA_LENGTH byte[1][] : the length of INPUT_STREAM_CONTENT_TYPE byte[2][] : the byte array of the value of INPUT_STREAM_CONTENT_TYPE if the length is zero, it only contains one byte data of which value is zero. byte[3...] : byte array of INPUT_STREAM_CONTENT_DATA (it could be multiple tWAS v9) byte[3] doesn't exist if the length is zero.- Specified by:
serializeInputStreamData
in interfaceIExtendedRequest
- Throws:
java.io.IOException
java.io.UnsupportedEncodingException
java.lang.IllegalStateException
-
deserializeInputStreamData
public java.util.HashMap deserializeInputStreamData(byte[][] input) throws java.io.UnsupportedEncodingException, java.lang.IllegalStateException
- Specified by:
deserializeInputStreamData
in interfaceIExtendedRequest
- Throws:
java.io.UnsupportedEncodingException
java.lang.IllegalStateException
-
sizeInputStreamData
public long sizeInputStreamData(java.util.Map isd) throws java.io.UnsupportedEncodingException, java.lang.IllegalStateException
Description copied from interface:IExtendedRequest
returns estimated size of serialized InputStreamData this code does not consider that the length in long overwraps.- Specified by:
sizeInputStreamData
in interfaceIExtendedRequest
- Throws:
java.io.UnsupportedEncodingException
java.lang.IllegalStateException
-
setValuesIfMultiReadofPostdataEnabled
public void setValuesIfMultiReadofPostdataEnabled()
- Specified by:
setValuesIfMultiReadofPostdataEnabled
in interfaceIExtendedRequest
-
-