public interface Ninja
Modifier and Type | Method and Description |
---|---|
Result |
getBadRequestResult(Context context,
BadRequestException exception)
Should handle cases where the client sent strange date that
led to an error.
|
Result |
getForbiddenResult(Context context)
Should handle cases where access is forbidden
Should lead to a html error 403 - forbidden
(and be used with the same mindset).
|
Result |
getForbiddenResult(Context context,
ForbiddenRequestException exception)
Should handle cases where access is forbidden
Should lead to a html error 403 - forbidden
(and be used with the same mindset).
|
Result |
getInternalServerErrorResult(Context context,
Exception exception,
Result underlyingResult)
Should handle cases where an exception is thrown
when handling a route that let to an internal server error.
|
Result |
getNotFoundResult(Context context)
Should handle cases where no route can be found for a given request.
|
Result |
getNotFoundResult(Context context,
RequestNotFoundException exception)
Should handle cases where no route can be found for a given request.
|
Result |
getRenderingExceptionResult(Context context,
RenderingException exception,
Result underlyingResult)
Should handle cases where a
RenderingException is thrown
when handling the rendering of a Result. |
Result |
getUnauthorizedResult(Context context)
Should handle cases where access is unauthorized
Should lead to a html error 401 - unauthorized
(and be used with the same mindset).
|
Result |
onException(Context context,
Exception exception)
This result should be used when an error occurs.
|
void |
onFrameworkShutdown()
Invoked when the server hosting Ninja is being stopped.
|
void |
onFrameworkStart()
Invoked when the framework starts.
|
void |
onRouteRequest(Context.Impl context)
When a route is requested this method is called.
|
void |
renderErrorResultAndCatchAndLogExceptions(Result result,
Context context)
Should be used to render an error.
|
void onRouteRequest(Context.Impl context)
Result onException(Context context, Exception exception)
context
- The context for this requestexception
- The exception to handle. Can be used to customize error message.Result getRenderingExceptionResult(Context context, RenderingException exception, Result underlyingResult)
RenderingException
is thrown
when handling the rendering of a Result.
Should lead to an html error 500 -- internal server error. If no special
handling is required, simply:
return getInternalServerErrorResult(context, exception, underlyingResult);
Result getInternalServerErrorResult(Context context, Exception exception, Result underlyingResult)
Result getBadRequestResult(Context context, BadRequestException exception)
Result getNotFoundResult(Context context)
Result getNotFoundResult(Context context, RequestNotFoundException exception)
Result getUnauthorizedResult(Context context)
Result getForbiddenResult(Context context)
Result getForbiddenResult(Context context, ForbiddenRequestException exception)
void onFrameworkStart()
void onFrameworkShutdown()
void renderErrorResultAndCatchAndLogExceptions(Result result, Context context)
Copyright © 2019 ninjaframework. All rights reserved.