Package play.components
Interface BodyParserComponents
- All Superinterfaces:
HttpConfigurationComponents,HttpErrorHandlerComponents,PekkoComponents,TemporaryFileComponents
- All Known Subinterfaces:
BuiltInComponents,CSPReportComponents,RoutingDslComponents
- All Known Implementing Classes:
BuiltInComponentsFromContext,ContextBasedBuiltInComponents,RoutingDslComponentsFromContext
public interface BodyParserComponents
extends HttpErrorHandlerComponents, HttpConfigurationComponents, PekkoComponents, TemporaryFileComponents
Java BodyParser components.
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptiondefault BodyParser.AnyContentdefault BodyParser.Bytesdefault BodyParser.Defaultdefault play.api.mvc.BodyParser<play.api.mvc.AnyContent>default BodyParser.Emptydefault BodyParser.FormUrlEncodeddefault BodyParser.Jsondefault BodyParser.MultipartFormDatadefault BodyParser.Rawdefault play.api.mvc.PlayBodyParsersdefault BodyParser.Textdefault BodyParser.TolerantJsondefault BodyParser.TolerantTextdefault BodyParser.TolerantXmldefault BodyParser.XmlMethods inherited from interface play.components.HttpConfigurationComponents
httpConfiguration, sessionConfigurationMethods inherited from interface play.components.HttpErrorHandlerComponents
httpErrorHandler, javaContextComponents, scalaHttpErrorHandlerMethods inherited from interface play.components.PekkoComponents
actorSystem, coordinatedShutdown, executionContext, materializerMethods inherited from interface play.components.TemporaryFileComponents
tempFileCreator
-
Method Details
-
scalaBodyParsers
default play.api.mvc.PlayBodyParsers scalaBodyParsers() -
defaultScalaBodyParser
default play.api.mvc.BodyParser<play.api.mvc.AnyContent> defaultScalaBodyParser() -
defaultBodyParser
- Returns:
- the default body parser
- See Also:
-
anyContentBodyParser
- Returns:
- the body parser for any content
- See Also:
-
jsonBodyParser
- Returns:
- the json body parser
- See Also:
-
tolerantJsonBodyParser
- Returns:
- the tolerant json body parser
- See Also:
-
xmlBodyParser
- Returns:
- the xml body parser
- See Also:
-
tolerantXmlBodyParser
- Returns:
- the tolerant xml body parser
- See Also:
-
textBodyParser
- Returns:
- the text body parser
- See Also:
-
tolerantTextBodyParser
- Returns:
- the tolerant text body parser
- See Also:
-
bytesBodyParser
- Returns:
- the bytes body parser
- See Also:
-
rawBodyParser
- Returns:
- the raw body parser
- See Also:
-
formUrlEncodedBodyParser
- Returns:
- the body parser for form url encoded
- See Also:
-
multipartFormDataBodyParser
- Returns:
- the multipart form data body parser
- See Also:
-
emptyBodyParser
- Returns:
- the empty body parser
- See Also:
-