Package play.mvc

Class BodyParser.AnyContent

    • Constructor Detail

      • AnyContent

        @Inject
        public AnyContent​(HttpErrorHandler errorHandler,
                          play.api.http.HttpConfiguration httpConfiguration,
                          play.api.mvc.PlayBodyParsers parsers)
    • Method Detail

      • apply

        public Accumulator<ByteString,​F.Either<Result,​Object>> apply​(Http.RequestHeader request)
        Description copied from interface: BodyParser
        Return an accumulator to parse the body of the given HTTP request.

        The accumulator should either produce a result if an error was encountered, or the parsed body.

        Specified by:
        apply in interface BodyParser<Object>
        Parameters:
        request - The request to create the body parser for.
        Returns:
        The accumulator to parse the body.