Package org.apache.coyote
Class Response
- java.lang.Object
-
- org.apache.coyote.Response
-
public final class Response extends java.lang.ObjectResponse object.
-
-
Constructor Summary
Constructors Constructor Description Response()Default constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description voidaction(ActionCode actionCode, java.lang.Object param)Perform an action on this response.voidaddHeader(java.lang.String name, java.lang.String value)Add a response header with the given name and value.voidaddHeader(java.lang.String name, java.lang.String value, java.nio.charset.Charset charset)Add a response header with the given name, value, and charset.booleancheckRegisterForWrite()Check and register for write interest.voidcommit()Signal that we're done with the headers, and body will follow.booleancontainsHeader(java.lang.String name)Does the response contain the given header.voiddoWrite(java.nio.ByteBuffer chunk)Write a chunk of bytes.longgetBytesWritten(boolean flush)Bytes written to socket - i.e. after compression, chunking, etc.java.lang.StringgetCharacterEncoding()java.nio.charset.CharsetgetCharset()longgetCommitTime()Return the time the response was committed (based on System.currentTimeMillis).longgetCommitTimeNanos()Return the time the response was committed (based on System.nanoTime).java.lang.StringgetContentLanguage()Return the content language.intgetContentLength()Get the content length as an int.longgetContentLengthLong()Get the content length as a long.java.lang.StringgetContentType()Get the content type.longgetContentWritten()Bytes written by application - i.e. before compression, chunking, etc.java.lang.ExceptiongetErrorException()Get the Exception that occurred during the writing of the response.java.util.LocalegetLocale()Get the locale for this response.java.lang.StringgetMessage()Get the status message.MimeHeadersgetMimeHeaders()Get the response headers.java.lang.ObjectgetNote(int pos)Get the note at the given position.RequestgetRequest()Get the associated request.intgetStatus()Get the response status code.java.util.function.Supplier<java.util.Map<java.lang.String,java.lang.String>>getTrailerFields()Get the trailer fields supplier.WriteListenergetWriteListener()Get the write listener.booleanisCommitted()Check if the response has been committed.booleanisError()Error flag accessor.booleanisErrorReportRequired()Check if error report is required.booleanisExceptionPresent()Check if an exception has occurred during response writing.booleanisReady()Check if the response is ready for writing.voidonWritePossible()Called when writing is possible.voidrecycle()Recycle this response.voidreset()Reset the response to its initial state.voidresetError()Reset the error state.voidsendHeaders()Deprecated.Unused.voidsetCharacterEncoding(java.lang.String characterEncoding)Overrides the character encoding used in the body of the response.voidsetCommitted(boolean v)Set the committed flag.voidsetContentLength(long contentLength)Set the content length.voidsetContentType(java.lang.String type)Sets the content type.voidsetContentTypeNoCharset(java.lang.String type)Set the content type without charset.booleansetError()Deprecated.This method will be changed to return void in Tomcat 11 onwardsvoidsetErrorException(java.lang.Exception ex)Set the error Exception that occurred during the writing of the response processing.booleansetErrorReported()Set the error as reported.voidsetHeader(java.lang.String name, java.lang.String value)Set a response header.voidsetLocale(java.util.Locale locale)Called explicitly by user to set the Content-Language and the default encoding.voidsetMessage(java.lang.String message)Set the status message.voidsetNote(int pos, java.lang.Object value)Set a note at the given position.voidsetOutputBuffer(OutputBuffer outputBuffer)Set the output buffer.voidsetRequest(Request req)Set the associated request.voidsetStatus(int status)Set the response status.voidsetTrailerFields(java.util.function.Supplier<java.util.Map<java.lang.String,java.lang.String>> supplier)Set the trailer fields supplier.voidsetWriteListener(WriteListener listener)Set the write listener.
-
-
-
Method Detail
-
getRequest
public Request getRequest()
Get the associated request.- Returns:
- The associated request
-
setRequest
public void setRequest(Request req)
Set the associated request.- Parameters:
req- The associated request
-
setOutputBuffer
public void setOutputBuffer(OutputBuffer outputBuffer)
Set the output buffer.- Parameters:
outputBuffer- The output buffer
-
getMimeHeaders
public MimeHeaders getMimeHeaders()
Get the response headers.- Returns:
- The response headers
-
setNote
public void setNote(int pos, java.lang.Object value)Set a note at the given position.- Parameters:
pos- The positionvalue- The value to set
-
getNote
public java.lang.Object getNote(int pos)
Get the note at the given position.- Parameters:
pos- The position- Returns:
- The note value
-
action
public void action(ActionCode actionCode, java.lang.Object param)
Perform an action on this response.- Parameters:
actionCode- The action codeparam- The action parameter
-
getStatus
public int getStatus()
Get the response status code.- Returns:
- The response status code
-
setStatus
public void setStatus(int status)
Set the response status.- Parameters:
status- The status value to set
-
getMessage
public java.lang.String getMessage()
Get the status message.- Returns:
- The message associated with the current status
-
setMessage
public void setMessage(java.lang.String message)
Set the status message.- Parameters:
message- The status message to set
-
isCommitted
public boolean isCommitted()
Check if the response has been committed.- Returns:
trueif the response has been committed
-
setCommitted
public void setCommitted(boolean v)
Set the committed flag.- Parameters:
v- The committed flag value
-
getCommitTime
public long getCommitTime()
Return the time the response was committed (based on System.currentTimeMillis).- Returns:
- the time the response was committed
-
getCommitTimeNanos
public long getCommitTimeNanos()
Return the time the response was committed (based on System.nanoTime).- Returns:
- the time the response was committed
-
setErrorException
public void setErrorException(java.lang.Exception ex)
Set the error Exception that occurred during the writing of the response processing.- Parameters:
ex- The exception that occurred
-
getErrorException
public java.lang.Exception getErrorException()
Get the Exception that occurred during the writing of the response.- Returns:
- The exception that occurred
-
isExceptionPresent
public boolean isExceptionPresent()
Check if an exception has occurred during response writing.- Returns:
trueif an exception has occurred
-
setError
@Deprecated public boolean setError()
Deprecated.This method will be changed to return void in Tomcat 11 onwardsSet the error flag.- Returns:
falseif the error flag was already set
-
isError
public boolean isError()
Error flag accessor.- Returns:
trueif the response has encountered an error
-
isErrorReportRequired
public boolean isErrorReportRequired()
Check if error report is required.- Returns:
trueif error report is required
-
setErrorReported
public boolean setErrorReported()
Set the error as reported.- Returns:
trueif the error state was successfully transitioned to reported
-
resetError
public void resetError()
Reset the error state.
-
reset
public void reset() throws java.lang.IllegalStateExceptionReset the response to its initial state.- Throws:
java.lang.IllegalStateException- if the response has already been committed
-
containsHeader
public boolean containsHeader(java.lang.String name)
Does the response contain the given header.
Warning: This method always returnsfalsefor Content-Type and Content-Length.- Parameters:
name- The name of the header of interest- Returns:
trueif the response contains the header.
-
setHeader
public void setHeader(java.lang.String name, java.lang.String value)Set a response header.- Parameters:
name- The header namevalue- The header value
-
addHeader
public void addHeader(java.lang.String name, java.lang.String value)Add a response header with the given name and value.- Parameters:
name- The header namevalue- The header value
-
addHeader
public void addHeader(java.lang.String name, java.lang.String value, java.nio.charset.Charset charset)Add a response header with the given name, value, and charset.- Parameters:
name- The header namevalue- The header valuecharset- The charset for the header value
-
setTrailerFields
public void setTrailerFields(java.util.function.Supplier<java.util.Map<java.lang.String,java.lang.String>> supplier)
Set the trailer fields supplier.- Parameters:
supplier- The trailer fields supplier
-
getTrailerFields
public java.util.function.Supplier<java.util.Map<java.lang.String,java.lang.String>> getTrailerFields()
Get the trailer fields supplier.- Returns:
- The trailer fields supplier
-
sendHeaders
@Deprecated public void sendHeaders()
Deprecated.Unused. Will be removed in Tomcat 11 onwards. Usecommit().Signal that we're done with the headers, and body will follow.
-
commit
public void commit()
Signal that we're done with the headers, and body will follow.
-
getLocale
public java.util.Locale getLocale()
Get the locale for this response.- Returns:
- The locale for this response
-
setLocale
public void setLocale(java.util.Locale locale)
Called explicitly by user to set the Content-Language and the default encoding.- Parameters:
locale- The locale to use for this response
-
getContentLanguage
public java.lang.String getContentLanguage()
Return the content language.- Returns:
- The language code for the language currently associated with this response
-
setCharacterEncoding
public void setCharacterEncoding(java.lang.String characterEncoding) throws java.io.UnsupportedEncodingExceptionOverrides the character encoding used in the body of the response. This method must be called prior to writing output using getWriter().- Parameters:
characterEncoding- The name of character encoding.- Throws:
java.io.UnsupportedEncodingException- If the specified name is not recognised
-
getCharset
public java.nio.charset.Charset getCharset()
-
getCharacterEncoding
public java.lang.String getCharacterEncoding()
- Returns:
- The name of the current encoding
-
setContentType
public void setContentType(java.lang.String type)
Sets the content type. This method must preserve any response charset that may already have been set via a call to response.setContentType(), response.setLocale(), or response.setCharacterEncoding().- Parameters:
type- the content type
-
setContentTypeNoCharset
public void setContentTypeNoCharset(java.lang.String type)
Set the content type without charset.- Parameters:
type- The content type
-
getContentType
public java.lang.String getContentType()
Get the content type.- Returns:
- The content type, including charset if set
-
setContentLength
public void setContentLength(long contentLength)
Set the content length.- Parameters:
contentLength- The content length
-
getContentLength
public int getContentLength()
Get the content length as an int.- Returns:
- The content length as an int, or -1 if the length exceeds Integer.MAX_VALUE
-
getContentLengthLong
public long getContentLengthLong()
Get the content length as a long.- Returns:
- The content length
-
doWrite
public void doWrite(java.nio.ByteBuffer chunk) throws java.io.IOExceptionWrite a chunk of bytes.- Parameters:
chunk- The ByteBuffer to write- Throws:
java.io.IOException- If an I/O error occurs during the write
-
recycle
public void recycle()
Recycle this response.
-
getContentWritten
public long getContentWritten()
Bytes written by application - i.e. before compression, chunking, etc.- Returns:
- The total number of bytes written to the response by the application. This will not be the number of bytes written to the network which may be more or less than this value.
-
getBytesWritten
public long getBytesWritten(boolean flush)
Bytes written to socket - i.e. after compression, chunking, etc.- Parameters:
flush- Should any remaining bytes be flushed before returning the total? Iffalsebytes remaining in the buffer will not be included in the returned value- Returns:
- The total number of bytes written to the socket for this response
-
getWriteListener
public WriteListener getWriteListener()
Get the write listener.- Returns:
- The write listener
-
setWriteListener
public void setWriteListener(WriteListener listener)
Set the write listener.- Parameters:
listener- The write listener
-
isReady
public boolean isReady()
Check if the response is ready for writing.- Returns:
trueif ready for writing
-
checkRegisterForWrite
public boolean checkRegisterForWrite()
Check and register for write interest.- Returns:
trueif ready for write
-
onWritePossible
public void onWritePossible() throws java.io.IOExceptionCalled when writing is possible.- Throws:
java.io.IOException- If an I/O error occurs
-
-