Interface WriteableResponse<T>
- 
- All Known Implementing Classes:
- AbstractResponse,- JSONResponse,- QueryableResponse,- RawResponse,- XMLResponse
 
 public interface WriteableResponse<T>
- 
- 
Field SummaryFields Modifier and Type Field Description static java.nio.charset.CharsetDEFAULT_CHARSET
 - 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Optional<java.lang.String>getContentCharset()java.util.Optional<java.lang.String>getContentType()java.util.Optional<MediaType>getMediaType()voidwrite(java.io.OutputStream os)
 
- 
- 
- 
Method Detail- 
writevoid write(java.io.OutputStream os) throws java.io.IOException- Throws:
- java.io.IOException
 
 - 
getContentTypejava.util.Optional<java.lang.String> getContentType() 
 - 
getContentCharsetjava.util.Optional<java.lang.String> getContentCharset() 
 - 
getMediaTypejava.util.Optional<MediaType> getMediaType() 
 
- 
 
-