Class ResponseEntityHelper
- java.lang.Object
-
- com.flowable.core.common.rest.response.ResponseEntityHelper
-
public class ResponseEntityHelper extends Object
Helper class for working withResponseEntity
.- Author:
- Filip Hrisafov
-
-
Field Summary
Fields Modifier and Type Field Description protected Collection<MediaType>
autoInlineMediaTypes
protected Charset
charset
-
Constructor Summary
Constructors Constructor Description ResponseEntityHelper(Collection<MediaType> autoInlineMediaTypes)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ResponseEntity<Resource>
asByteArrayResponseEntity(InputStream inputStream, String mimeType, String name, Boolean download)
protected String
dispositionType(Boolean download, MediaType mediaType)
void
setCharset(Charset charset)
-
-
-
Field Detail
-
autoInlineMediaTypes
protected Collection<MediaType> autoInlineMediaTypes
-
charset
protected Charset charset
-
-
Constructor Detail
-
ResponseEntityHelper
public ResponseEntityHelper(Collection<MediaType> autoInlineMediaTypes)
-
-
Method Detail
-
asByteArrayResponseEntity
public ResponseEntity<Resource> asByteArrayResponseEntity(InputStream inputStream, String mimeType, String name, Boolean download)
Create aResponseEntity
with abyte[]
body based on theinputStream
.When the
mimeType
is provided and is a knownMediaType
then it would be used as theContent-Type
header for theResponseEntity
. Otherwise,application/octet-stream
would be used.If the
name
is provided then aContent-Disposition
header would be added with that as a file name.The
download
flag is used to indicate whether theinputStream
should be displayed inside the Web page (inline
whendownload
isfalse
) or downloaded (attachment
whendownload
istrue
). In case it isnull
the value would be created based on themimeType
.NB: Callers of this method are responsible for appropriately closing the
inputStream
- Parameters:
inputStream
- The input stream that should be used as the body (the caller is responsible for closing it)mimeType
- the mime type for theContent-Type
headername
- the filename for theContent-Disposition
headerdownload
- flag indicating the type for theContent-Disposition
header- Returns:
- the
ResponseEntity
with a statusHttpStatus.OK
-
setCharset
public void setCharset(Charset charset)
-
-