abstract class Results extends java.lang.Object
Factory class for generating Results Created by Kevin Sheppard November 09, 2024
Constructor and description |
---|
Results() |
Type Params | Return Type | Name and description |
---|---|---|
|
static StatusResult |
created()
|
|
static Result |
created(java.lang.Object body)
|
|
static Result |
error(java.lang.Object body)
|
|
static FileEntityResult |
file(java.lang.String resourcePath) |
|
static FileEntityResult |
file(java.nio.file.Path file) Send a file from disk to the client. |
|
static FileEntityResult |
file(java.io.InputStream inputStream) |
|
static Result |
generateResult(int statusCode, java.lang.Object body) |
|
static JsonEntityResult |
json(java.lang.Object object) Send a JSON response to the client. |
|
static StatusResult |
ok()
|
|
static Result |
ok(java.lang.Object body) |
|
static Result |
redirect(java.lang.String path)
|
|
static StatusResult |
status(int statusCode)
|
|
static Result |
unauthorized(java.lang.String message) |
|
static Result |
unauthorized() |
|
static Result |
validationFailed(java.lang.Object body)
|
|
static Result |
view(java.lang.String template) This sets the Content-Type to text/html by default. |
|
static Result |
view(java.lang.String template, java.util.Map<java.lang.String, java.lang.Object> data) This sets the Content-Type to text/html by default. |
Methods inherited from class | Name |
---|---|
class java.lang.Object |
java.lang.Object#wait(long, int), java.lang.Object#wait(), java.lang.Object#wait(long), java.lang.Object#equals(java.lang.Object), java.lang.Object#toString(), java.lang.Object#hashCode(), java.lang.Object#getClass(), java.lang.Object#notify(), java.lang.Object#notifyAll() |
body
- The response body
body
- The response body
Send a file from your application's resource root to the client.
During development, files will be served from the diego.baseResource
directory. In production,
files will be served from you're application's JAR file.
resourcePath
- The path to the file relative to the root of the class pathSend a file from disk to the client.
file
- A path to a file on diskSend a JSON response to the client.
object
- The object to serialized
path
- The destination path
statusCode
- The HTTP status code
body
- The response body This sets the Content-Type to text/html
by default.
template
- The name of the template relative to {diego.templates.dir} and without the extension. E.g. "index". This sets the Content-Type to text/html
by default.
template
- The name of the template relative to {diego.templates.dir} and without the extension. E.g. "index".data
- Data to pass to the template.