public static class BodyParser.Text extends BodyParser.BufferingBodyParser<String>
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 and Description |
|---|
Text(play.api.http.HttpConfiguration httpConfiguration,
HttpErrorHandler errorHandler) |
Text(long maxLength,
HttpErrorHandler errorHandler) |
| Modifier and Type | Method and Description |
|---|---|
Accumulator<akka.util.ByteString,F.Either<Result,String>> |
apply(Http.RequestHeader request)
Return an accumulator to parse the body of the given HTTP request.
|
protected String |
parse(Http.RequestHeader request,
akka.util.ByteString bytes)
Parse the body.
|
apply1clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitwidenpublic Text(long maxLength,
HttpErrorHandler errorHandler)
@Inject
public Text(play.api.http.HttpConfiguration httpConfiguration,
HttpErrorHandler errorHandler)
public Accumulator<akka.util.ByteString,F.Either<Result,String>> apply(Http.RequestHeader request)
BodyParserThe accumulator should either produce a result if an error was encountered, or the parsed body.
apply in interface BodyParser<String>apply in class BodyParser.MaxLengthBodyParser<String>request - The request to create the body parser for.protected String parse(Http.RequestHeader request, akka.util.ByteString bytes) throws Exception
BodyParser.BufferingBodyParserparse in class BodyParser.BufferingBodyParser<String>request - The request associated with the body.bytes - The bytes of the body.Exception - If the body failed to parse. It is assumed that any exceptions thrown by
this method are the fault of the client, so a 400 bad request error will be returned if
this method throws an exception.