Module io.inverno.mod.http.base
Package io.inverno.mod.http.base.header
Interface Headers.ContentDisposition
- All Superinterfaces:
Header
- Enclosing class:
Headers
Content-disposition HTTP header as defined by RFC 6266 Section 4.1.
- Since:
- 1.0
- Author:
- Jeremy Kuhn
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String
Creation-date parameterstatic final String
Filename parameterstatic final String
Modification-date parameterstatic final String
Name parameterstatic final String
Read-state parameterstatic final String
Size parameterstatic final String
form-data content disposition type as defined by RFC 7578. -
Method Summary
Modifier and TypeMethodDescriptionReturns the part creation datetime.Returns the disposition type.Returns the part file name.Returns the part modification datetime.Returns the part name.Returns the part read datetime.getSize()
Returns the part size.Methods inherited from interface io.inverno.mod.http.base.header.Header
getHeaderName, getHeaderValue
-
Field Details
-
PART_NAME
Name parameter- See Also:
-
FILENAME
Filename parameter- See Also:
-
CREATION_DATE
Creation-date parameter- See Also:
-
MODIFICATION_DATE
Modification-date parameter- See Also:
-
READ_DATE
Read-state parameter- See Also:
-
SIZE
Size parameter- See Also:
-
TYPE_FORM_DATA
form-data content disposition type as defined by RFC 7578.- See Also:
-
-
Method Details
-
getDispositionType
String getDispositionType()Returns the disposition type.
- Returns:
- the disposition type
-
getPartName
String getPartName()Returns the part name.
- Returns:
- the name or null
-
getFilename
String getFilename()Returns the part file name.
- Returns:
- the file name or null
-
getCreationDateTime
String getCreationDateTime()Returns the part creation datetime.
- Returns:
- the creation datetime or null
-
getModificationDatetime
String getModificationDatetime()Returns the part modification datetime.
- Returns:
- the modification datetime or null
-
getReadDateTime
String getReadDateTime()Returns the part read datetime.
- Returns:
- the read datetime or null
-
getSize
Integer getSize()Returns the part size.
- Returns:
- the size or null
-