case class FilePart[A](key: String, filename: String, contentType: Option[String], ref: A, fileSize: Long = -1, dispositionType: String = "form-data", refToBytes: (A) => Option[ByteString] = (a: A) => None) extends Part[A] with Product with Serializable
Ordering
- Alphabetic
- By Inheritance
Inherited
- FilePart
- Serializable
- Product
- Equals
- Part
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new FilePart(key: String, filename: String, contentType: Option[String], ref: A, fileSize: Long = -1, dispositionType: String = "form-data", refToBytes: (A) => Option[ByteString] = (a: A) => None)
Value Members
- def asJava(): mvc.Http.MultipartFormData.FilePart[A]
- val contentType: Option[String]
- val dispositionType: String
- val fileSize: Long
- val filename: String
- val key: String
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- val ref: A
- val refToBytes: (A) => Option[ByteString]
- def transformRefToBytes(): ByteString
A file part.