See: Description
Interface | Description |
---|---|
BodyParser |
A body parser parses the HTTP request body content.
|
Http.Cookies |
HTTP Cookies set
|
Http.HeaderNames |
Defines all standard HTTP headers.
|
Http.MimeTypes |
Common HTTP MIME types
|
Http.Request |
An HTTP request.
|
Http.RequestHeader | |
Http.Status |
Defines all standard HTTP status codes.
|
PathBindable<T extends PathBindable<T>> |
Binder for path parameters.
|
QueryStringBindable<T extends QueryStringBindable<T>> |
Binder for query string parameters.
|
Result |
Any action result.
|
WebSocket.Out<A> |
A WebSocket out.
|
Class | Description |
---|---|
Action<T> |
An action acts as decorator for the action method call.
|
Action.Simple |
A simple action with no configuration.
|
BodyParser.AnyContent |
Guess the body content by checking the Content-Type header.
|
BodyParser.Default |
If PATCH, POST, or PUT, guess the body content by checking the Content-Type header.
|
BodyParser.Empty |
Don't parse the body.
|
BodyParser.FormUrlEncoded |
Parse the body as form url encoded if the Content-Type is application/x-www-form-urlencoded.
|
BodyParser.Json |
Parse the body as Json if the Content-Type is text/json or application/json.
|
BodyParser.MultipartFormData |
Parse the body as form url encoded without checking the Content-Type.
|
BodyParser.Raw |
Store the body content in a RawBuffer.
|
BodyParser.Text |
Parse the body as text if the Content-Type is text/plain.
|
BodyParser.TolerantJson |
Parse the body as Json without checking the Content-Type.
|
BodyParser.TolerantText |
Parse the body as text without checking the Content-Type.
|
BodyParser.TolerantXml |
Parse the body as Xml without checking the Content-Type.
|
BodyParser.Xml |
Parse the body as Xml if the Content-Type is application/xml.
|
Call |
Defines a 'call', describing an HTTP request.
|
Controller |
Superclass for a Java-based controller.
|
Http |
Defines HTTP standard objects.
|
Http.Context |
The global HTTP context.
|
Http.Context.Implicit |
Import in templates to get implicit HTTP context.
|
Http.Cookie |
HTTP Cookie
|
Http.Flash |
HTTP Flash.
|
Http.MultipartFormData |
Multipart form data body.
|
Http.MultipartFormData.FilePart |
A file part.
|
Http.RawBuffer |
Handle the request body a raw bytes data.
|
Http.RequestBody |
The request body.
|
Http.RequestBuilder |
The builder for building a request.
|
Http.RequestImpl |
An HTTP request.
|
Http.Response |
The HTTP response.
|
Http.Session |
HTTP Session.
|
Http.WrappedContext |
A wrapped context.
|
Results |
Common results.
|
Results.ByteChunks |
Chunked result based on byte[] chunks.
|
Results.Chunks<A> |
A Chunked result.
|
Results.Chunks.Out<A> |
A Chunked stream.
|
Results.Redirect |
A redirect result.
|
Results.Status |
A simple result.
|
Results.StatusHeader |
A status with no body
|
Results.StringChunks |
Chunked result based on String chunks.
|
Results.Todo |
A 501 NOT_IMPLEMENTED simple result.
|
Security |
Defines several security helpers.
|
Security.AuthenticatedAction |
Wraps another action, allowing only authenticated HTTP requests.
|
Security.Authenticator |
Handles authentication.
|
WebSocket<A> |
A WebSocket result.
|
WebSocket.In<A> |
A WebSocket in.
|
Annotation Type | Description |
---|---|
BodyParser.Of |
Specify the body parser to use for an Action method.
|
Security.Authenticated |
Wraps the annotated action in an
AuthenticatedAction . |
With |
Decorates an
Action or a Controller with another Action . |