Description
The HttpResponseSender class allows you to handle HTTP-based responses.
Static methods
sendCreatedResult
Creates a callback function that sends a newly created object as JSON. This callack function call be called directly or passed as a parameter to business logic components.
If the object is not null, it returns 201 status code. For null results, it returns 204 status code. If an error occurs, it sends ErrorDescription with approproate status code.
public static
sendCreatedResult(req: any, res: any, result: any): void
- req: any - an HTTP request
- res: any - an HTTP response
- result: any - an execution result
sendDeletedResult
Creates a sendDeletedResult function that sends a deleted object as JSON. That callack function call be called directly or passed as a parameter to business logic components.
If object is not null, it returns 201 status code. For null results, it returns 204 status code. If an error occurs, it sends ErrorDescription with the approproate status code.
public static
sendDeletedResult(req: any, res: any, result: any): void
- req: any - an HTTP request
- res: any - an HTTP response
- result: any - execution result
sendEmptyResult
Creates a callback function that sends an empty result with 204 status code. If an error occurs, it sends ErrorDescription with approproate status code.
public static
sendEmptyResult(req: any, res: any): void
- req: any - an HTTP request
- res: any - an HTTP response
- result: any - an execution result
sendError
Sends an error serialized as ErrorDescription object and an appropriate HTTP status code. If status code is not defined, it uses 500 status code.
public static
sendError(req: any, res: any, error: any): void
- req: any - an HTTP request
- res: any - an HTTP response
- result: any - execution result
sendResult
Creates a callback function that sends a result as a JSON object. That callack function call be called directly or passed as a parameter to business logic components.
If object is not null, it returns 200 status code. For null results, it returns 204 status code. If error occur, it sends ErrorDescription with the approproate status code.
public static
sendResult(req: any, res: any, result: any): void
- req: any - an HTTP request
- res: any - an HTTP response
- result: any - execution result