| Interface | Description |
|---|---|
| ActionCreator |
An interface for creating Java actions from Java methods.
|
| HttpErrorHandler |
Component for handling HTTP errors in Play.
|
| HttpFilters |
Provides filters to the HttpRequestHandler.
|
| HttpRequestHandler |
An HTTP request handler
|
| Class | Description |
|---|---|
| DefaultActionCreator |
A default implementation of the action creator.
|
| DefaultHttpErrorHandler |
Default implementation of the http error handler.
|
| DefaultHttpFilters |
Helper class which has a varargs constructor taking the filters.
|
| DefaultHttpRequestHandler | |
| HandlerForRequest |
A request and a handler to handle it.
|
| HtmlOrJsonHttpErrorHandler |
An HttpErrorHandler that uses either HTML or JSON in the response depending on the client's preference.
|
| HttpEntity |
An HTTP entity
|
| HttpEntity.Chunked |
A chunked entity, backed by a source of chunks.
|
| HttpEntity.Streamed |
A streamed entity, backed by a source.
|
| HttpEntity.Strict |
A strict entity, where all the data for it is in memory.
|
| JsonHttpErrorHandler |
An alternative default HTTP error handler which will render errors as JSON messages instead of HTML pages.
|
| PreferredMediaTypeHttpErrorHandler |
An `HttpErrorHandler` that delegates to one of several `HttpErrorHandlers` depending on the client's media type
preference.
|