Object/Class

play.api.mvc

MultipartFormData

Related Docs: class MultipartFormData | package mvc

Permalink

object MultipartFormData extends Serializable

Defines parts handled by Multipart form data.

Source
ContentTypes.scala
Linear Supertypes
Serializable, Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. MultipartFormData
  2. Serializable
  3. Serializable
  4. AnyRef
  5. Any
  1. Hide All
  2. Show all
Visibility
  1. Public
  2. All

Type Members

  1. case class BadPart(headers: Map[String, String]) extends Part[Nothing] with Product with Serializable

    Permalink

    A part that has not been properly parsed.

  2. case class DataPart(key: String, value: String) extends Part[Nothing] with Product with Serializable

    Permalink

    A data part.

  3. case class FilePart[A](key: String, filename: String, contentType: Option[String], ref: A) extends Part[A] with Product with Serializable

    Permalink

    A file part.

  4. case class MaxMemoryBufferExceeded(message: String) extends Part[Nothing] with Product with Serializable

    Permalink

    The multipart/form-data parser buffers many things in memory, including data parts, headers, file names etc.

    The multipart/form-data parser buffers many things in memory, including data parts, headers, file names etc.

    Some buffer limits apply to each element, eg, there is a buffer for headers before they are parsed. Other buffer limits apply to all in memory data in aggregate, this includes data parts, file names, part names.

    If any of these buffers are exceeded, this will be emitted.

  5. case class ParseError(message: String) extends Part[Nothing] with Product with Serializable

    Permalink

    Emitted when the multipart stream can't be parsed for some reason.

  6. sealed trait Part[+A] extends AnyRef

    Permalink

    A part.

    A part.

    A

    the type that file parts are exposed as.

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  7. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  8. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  9. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  10. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  11. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  12. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  13. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  14. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  15. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  16. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  17. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  18. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  19. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Serializable

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped