Package org.springframework.http
Interface ContentDisposition.Builder
- Enclosing class:
- ContentDisposition
public static interface ContentDisposition.Builder
A mutable builder for 
ContentDisposition.- 
Method SummaryModifier and TypeMethodDescriptionbuild()Build the content disposition.Set the value of the filename parameter.Set the value of thefilenamethat will be encoded as defined in RFC 5987.Set the value of the name parameter.
- 
Method Details- 
nameSet the value of the name parameter.
- 
filenameSet 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".
- 
filenameSet the value of thefilenamethat 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.
- 
buildContentDisposition build()Build the content disposition.
 
-