Package play.mvc
Class BodyParser.AnyContent
java.lang.Object
play.mvc.BodyParser.AnyContent
- All Implemented Interfaces:
BodyParser<Object>
- Direct Known Subclasses:
BodyParser.Default
- Enclosing interface:
- BodyParser<A>
Guess the body content by checking the Content-Type header.
-
Nested Class Summary
Nested classes/interfaces inherited from interface play.mvc.BodyParser
BodyParser.AnyContent, BodyParser.BufferingBodyParser<A>, BodyParser.Bytes, BodyParser.CompletableBodyParser<A>, BodyParser.Default, BodyParser.DelegatingBodyParser<A,B>, BodyParser.DelegatingMultipartFormDataBodyParser<A>, BodyParser.Empty, BodyParser.FormUrlEncoded, BodyParser.Json, BodyParser.MaxLengthBodyParser<A>, BodyParser.MultipartFormData, BodyParser.Of, BodyParser.Raw, BodyParser.TemporaryFile, BodyParser.Text, BodyParser.ToFile, BodyParser.TolerantJson, BodyParser.TolerantText, BodyParser.TolerantXml, BodyParser.Xml -
Constructor Summary
ConstructorsConstructorDescriptionAnyContent(HttpErrorHandler errorHandler, play.api.http.HttpConfiguration httpConfiguration, play.api.mvc.PlayBodyParsers parsers) -
Method Summary
Modifier and TypeMethodDescriptionapply(Http.RequestHeader request) Return an accumulator to parse the body of the given HTTP request.
-
Constructor Details
-
AnyContent
@Inject public AnyContent(HttpErrorHandler errorHandler, play.api.http.HttpConfiguration httpConfiguration, play.api.mvc.PlayBodyParsers parsers)
-
-
Method Details
-
apply
Description copied from interface:BodyParserReturn 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:
applyin interfaceBodyParser<Object>- Parameters:
request- The request to create the body parser for.- Returns:
- The accumulator to parse the body.
-