Package org.springframework.http
Interface ContentDisposition.Builder
- Enclosing class:
- ContentDisposition
public static interface ContentDisposition.Builder
A mutable builder for
ContentDisposition
.-
Method Summary
Modifier and TypeMethodDescriptionbuild()
Build the content disposition.Set the value of the filename parameter.Set the value of thefilename
that will be encoded as defined in RFC 5987.Set the value of the name parameter.
-
Method Details
-
name
Set the value of the name parameter. -
filename
Set the value of the filename parameter. The given filename will be formatted as quoted-string, as defined in RFC 2616, section 2.2, and any quote characters within the filename value will be escaped with a backslash, for example,"foo\"bar.txt"
becomes"foo\\\"bar.txt"
. -
filename
Set the value of thefilename
that will be encoded as defined in RFC 5987. Only the US-ASCII, UTF-8, and ISO-8859-1 charsets are supported.Note: Do not use this for a
"multipart/form-data"
request since RFC 7578, Section 4.2 and also RFC 5987 mention it does not apply to multipart requests. -
build
ContentDisposition build()Build the content disposition.
-