Package | Description |
---|---|
org.springframework.http |
Contains a basic abstraction over client/server-side HTTP.
|
Modifier and Type | Method and Description |
---|---|
static ContentDisposition.Builder |
ContentDisposition.attachment()
Return a builder for a
ContentDisposition of type "attachment". |
static ContentDisposition.Builder |
ContentDisposition.builder(String type)
Return a builder for a
ContentDisposition . |
ContentDisposition.Builder |
ContentDisposition.Builder.creationDate(ZonedDateTime creationDate)
Deprecated.
since 5.2.3 as per
RFC 6266, Appendix B,
to be removed in a future release.
|
ContentDisposition.Builder |
ContentDisposition.Builder.filename(String filename)
Set the value of the filename parameter.
|
ContentDisposition.Builder |
ContentDisposition.Builder.filename(String filename,
Charset charset)
Set the value of the
filename that will be encoded as
defined in RFC 5987. |
static ContentDisposition.Builder |
ContentDisposition.formData()
Return a builder for a
ContentDisposition of type "form-data". |
static ContentDisposition.Builder |
ContentDisposition.inline()
Return a builder for a
ContentDisposition of type "inline". |
ContentDisposition.Builder |
ContentDisposition.Builder.modificationDate(ZonedDateTime modificationDate)
Deprecated.
since 5.2.3 as per
RFC 6266, Appendix B,
to be removed in a future release.
|
ContentDisposition.Builder |
ContentDisposition.Builder.name(String name)
Set the value of the name parameter.
|
ContentDisposition.Builder |
ContentDisposition.Builder.readDate(ZonedDateTime readDate)
Deprecated.
since 5.2.3 as per
RFC 6266, Appendix B,
to be removed in a future release.
|
ContentDisposition.Builder |
ContentDisposition.Builder.size(Long size)
Deprecated.
since 5.2.3 as per
RFC 6266, Appendix B,
to be removed in a future release.
|