%REST.Impl
class %REST.Impl extends %Library.RegisteredObject
Abstract superclass for REST implementation classes generated from OpenAPI specifications.Method Inventory
- %CheckAccepts()
- %DeleteHeader()
- %GetContentType()
- %GetHeader()
- %LogError()
- %ReportRESTError()
- %SetContentType()
- %SetHeader()
- %SetHeaderIfEmpty()
- %SetStatusCode()
- %WriteResponse()
Parameters
parameter ExposeServerExceptions = 0;
If ExposeServerExceptions is overridden as true, then details of internal errors will be exposed.
Methods
Check that the ACCEPT request header is included in the produces list.
classmethod %DeleteHeader(name As %String)
Remove a header from the response. Note that name is not case sensitive
classmethod %GetContentType()
Get the content-type header of the request
Return the value of the name request header.
Note that name is not case sensitive
Log an API Management error
classmethod %ReportRESTError(statusCode As %String, sc As %Status, exposeServerExceptions As %Boolean = 0)
Report an error when processing a request.
The implementation class may contain an override of %ReportRESTError in
order to format the error response as required by the REST application.
The override should use the %WriteResponse method to return the error response.
classmethod %SetContentType(contentType As %String)
Set the content-type header of the response
Sets a custom HTTP header into the reply.
If you set the same header twice it will append the information
to the first with a ',' between them. Note that name is not case sensitive, however we will
remember the case of the header when sending this to the client.
Helper method that sets a header if it is currently empty, if it already has a value it does nothing.
Returns true if the header was set and false if it did nothing.
classmethod %SetStatusCode(statusCode As %String)
The HTTP Status code to be sent back in the response. The HTTP status codes are defined
in RFC 2068.
http://www.faqs.org/rfcs/rfc2068.htmlOpens in a new tab
http://www.faqs.org/rfcs/rfc2068.htmlOpens in a new tab
classmethod %WriteResponse(response)
%WriteResponse is used by the dispatch class to write the response to this request.
Inherited Members
Inherited Methods
- %AddToSaveSet()
- %ClassIsLatestVersion()
- %ClassName()
- %ConstructClone()
- %DispatchClassMethod()
- %DispatchGetModified()
- %DispatchGetProperty()
- %DispatchMethod()
- %DispatchSetModified()
- %DispatchSetMultidimProperty()
- %DispatchSetProperty()
- %Extends()
- %GetParameter()
- %IsA()
- %IsModified()
- %New()
- %NormalizeObject()
- %ObjectModified()
- %OriginalNamespace()
- %PackageName()
- %RemoveFromSaveSet()
- %SerializeObject()
- %SetModified()
- %ValidateObject()