All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.twitter.finatra.http.fileupload.MultipartItem.scala Maven / Gradle / Ivy

The newest version!
package com.twitter.finatra.http.fileupload

import org.apache.commons.fileupload.FileItemHeaders

case class MultipartItem(
  data: Array[Byte], // TODO don't store file in memory; write to temp file and store file reference
  fieldName: String,
  isFormField: Boolean,
  contentType: Option[String],
  filename: Option[String],
  headers: FileItemHeaders)




© 2015 - 2025 Weber Informatics LLC | Privacy Policy