Class SavedRequest
- java.lang.Object
-
- org.apache.catalina.authenticator.SavedRequest
-
public final class SavedRequest extends Object
Object that saves the critical information from a request so that form-based authentication can reproduce it once the user has been authenticated.IMPLEMENTATION NOTE - It is assumed that this object is accessed only from the context of a single thread, so no synchronization around internal collection classes is performed.
- Author:
- Craig R. McClanahan
-
-
Constructor Summary
Constructors Constructor Description SavedRequest()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addCookie(Cookie cookie)
void
addHeader(String name, String value)
void
addLocale(Locale locale)
ByteChunk
getBody()
String
getContentType()
Iterator<Cookie>
getCookies()
String
getDecodedRequestURI()
Iterator<String>
getHeaderNames()
Iterator<String>
getHeaderValues(String name)
Iterator<Locale>
getLocales()
String
getMethod()
String
getQueryString()
String
getRequestURI()
void
setBody(ByteChunk body)
void
setContentType(String contentType)
void
setDecodedRequestURI(String decodedRequestURI)
void
setMethod(String method)
void
setQueryString(String queryString)
void
setRequestURI(String requestURI)
-
-
-
Method Detail
-
addCookie
public void addCookie(Cookie cookie)
-
addLocale
public void addLocale(Locale locale)
-
getMethod
public String getMethod()
-
setMethod
public void setMethod(String method)
-
getQueryString
public String getQueryString()
-
setQueryString
public void setQueryString(String queryString)
-
getRequestURI
public String getRequestURI()
-
setRequestURI
public void setRequestURI(String requestURI)
-
getDecodedRequestURI
public String getDecodedRequestURI()
-
setDecodedRequestURI
public void setDecodedRequestURI(String decodedRequestURI)
-
getBody
public ByteChunk getBody()
-
setBody
public void setBody(ByteChunk body)
-
getContentType
public String getContentType()
-
setContentType
public void setContentType(String contentType)
-
-