Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Published by Scroll Versions from space WDESIGNER and version 22.2a

...

Multiexcerpt
MultiExcerptNameREST_Service

REST API

Stereotype REST API is to used define a REST API for a Designer service.

Multiexcerpt
MultiExcerptNameRESTAPI
shouldDisplayInlineCommentsInIncludesfalse
Tagged ValueDescriptionAllowed Values

port

Defines the machine port number the service is binding to.any number
Using ports below 1024 may require additional privileges.
 tracePortDefines the shadow port of the service used for tracing.any number (default is service port + 40000)
maxRequestBodySize

Multiexcerpt include
SpaceWithExcerptINTERNAL
MultiExcerptNamemaxrequestbodysize
PageWithExcerptINTERNAL:_designer_excerpts
shouldDisplayInlineCommentsInIncludesfalse

any positive integer
0

Accept unlimited requests (default of services compiled with Builder versions < 7.12.0).

20482MB, default if not specified
maxRequestHeaderSize

Multiexcerpt include
SpaceWithExcerptINTERNAL
MultiExcerptNamemaxrequestheadersize
PageWithExcerptINTERNAL:_designer_excerpts
shouldDisplayInlineCommentsInIncludesfalse

any positive integer
88 KB (default if not specified).
maxParallelConnections

Defines the maximum number of request that can be processed in parallel.

any positive integer
tokenType

Mark the service as to use token authorization. The REST Test Tool (API Management) will then present a field to enter the token and put the value into the HTTP headers. Refer also to tokenHeaderName for more information.

You can use both in a REST service: basic authorization and token authorization, see useBasicAuth.

noneDo not use token authorization.
API KeyUse API key authorization.
tokenHeaderNameDefines the name of the header that will transport the token. This tagged value is only relevant, if token authorization is enabled at all. The token header name will be presented as the name of the header field that can be entered in the Bridge REST Test Tool. Refer also to tokenType for more information.A valid HTTP header name (according to RFC2616/RFC7230).
useBasicAuth

Mark the service as to use basic authentication mechanisms. The REST Test Tool (API Management) will then present fields to enter the credentials and put the values into the HTTP headers.

You can use both in a REST service: basic authorization and token authorization, see tokeType and tokenHeaderName.

trueEnable basic authentication.
falseDisable basic authentication (default).
jsonKeepNulls
Multiexcerpt
MultiExcerptNamejsonKeepNulls

When jsonKeepNulls is true, attributes of the REST response object having NULL values will be rendered to the REST response, otherwise they will be left out completely (see also chapter NULL Values).

trueRender attributes with NULL values to the REST response.
falseLeave out attributes with NULL values in the REST response (default).
jsonCompact
Multiexcerpt
MultiExcerptNamejsonCompact

When jsonCompact is true, the JSON composer will generate compact JSON, otherwise it will generate pretty JSON.

trueGenerate compact JSON (default).
falseGenerate pretty JSON.
jsonWriteTypeDiscriminator
Multiexcerpt
MultiExcerptNamejsonWriteTypeDiscriminator

If jsonCompact is true, the JSON composer will generate xUML type properties ("e2e:type") to the generated JSON. If this option is true, the Runtime will write the original xUML type to the generated JSON in form of "e2e:type": "<name of the original xUML type>" if the type being serialized does not match the expected metadata. This is necessary if you want to convert the generated JSON back to an xUML class using jsonToClass().

trueWrite xUML type discriminator.
falseDo not write xUML type discriminator.


REST Port

Stereotype REST Port is used on a class to mark it as REST port, the root element of a REST service structure.

Multiexcerpt
MultiExcerptNameRESTPort
shouldDisplayInlineCommentsInIncludesfalse
Tagged ValueDescriptionAllowed Values
pathDefines the path to this rest interface. If empty, the path is derived from the package structure.nonepath of the package structure will be used, e.g. /API/SupportCase/SupportAPI
any valid path stringpath string starting with "/", e.g. /support
errorClassAssigns a user-defined RESTError class to the REST interface. This class should be set in case of error and given back via the REST response.
For more information on REST error classes, see RESTError.
any complex type describing the structure of the error
apiVersionDefines the API version this port type provides (for documentation purposes only).any string

REST Resource

Stereotype REST Resource is used on a class to mark it as REST resource, part of a REST service structure.

Multiexcerpt
MultiExcerptNameRESTResource
Attribute
(Name of Setting)
DescriptionAllowed Values
Relative Path
(relativePath)
Defines the path of the REST resource or collection in relation to the parent resource. You can provide a static path, or a dynamic path using the notation :<name of a REST Parameter>. You may also provide a combination of both.nonethe name of the REST resource will be used, e.g. /supportcases
any valid stringthe given name will be used
a dynamic path supplying a REST parameterdynamic path, the value of the REST parameter will be passed to the REST methods, e.g. :id
Is Verbatim Path
(isVerbatimPath)
Multiexcerpt include
SpaceWithExcerptINTERNAL
MultiExcerptNameisVerbatimPath
PageWithExcerptINTERNAL:_designer_excerpts_stereotypes
shouldDisplayInlineCommentsInIncludesfalse
truePath should be treated as verbatim, path normalization is disabled.
false (default)Path should be URL encoded.

REST

Stereotype REST is used on a REST resource class method to mark it as REST method, part of a REST service structure. If the method name is one of GET, POST, PUT, DELETE, PATCH, HEAD, OPTIONS (with optional trailing '/'), it will be invoked automatically on its parent resource when an corresponding request is received.

Refer Implementing REST Methods to for more details and some examples.

Multiexcerpt
MultiExcerptNameREST
Attribute
(Name of Setting)
DescriptionAllowed Values
Http Method
(httpMethod)

Provide the HTTP method of this REST method should respond to.

a valid HTTP methodGET, POST, PUT, DELETE, PATCH, HEAD, OPTIONS
none
  • method name, if it is one of: GET, POST, PUT, DELETE, PATCH, HEAD, OPTIONS (with optional trailing '/')
  • GET otherwise
Relative Path
(relativePath)
Defines the path of the REST method in relation to the parent resource.noneThe name of the REST method will be used.
any valid stringThe given name will be used. The relative path may also contain variables (REST path parameters, specified as :<variable name>) and can be segmented like e.g. /date=:<a date variable> .
Is Verbatim Path
(isVerbatimPath)
Multiexcerpt include
SpaceWithExcerptINTERNAL
MultiExcerptNameisVerbatimPath
PageWithExcerptINTERNAL:_designer_excerpts_stereotypes
shouldDisplayInlineCommentsInIncludesfalse
truePath should be treated as verbatim, path normalization is disabled.
false (default)Path should be URL encoded.
Blob Body Content Type
(blobBodyContentType)

Specify a default content type for Blob response parameters from this endpoint. This must be a list of valid Accept headers as defined in RFC 7231.
Refer to Handling Blobs in the REST Interface for a deeper explanation and some examples.

Info

This attribute must be left unset if no Blob output parameters are used. In future versions, the effect of this attribute may be extended to other contexts as well.

a list of valid media rangese.g. application/msexcel
Default is application/octet-stream if not specified.
Reject Other Response Content Types
(rejectOtherResponseContentTypes)

The xUML Runtime performs a verification of the content-type header for REST responses. Specify whether to return an error (HTTP 406, not acceptable) on responses with a content type that does not conform with the content types specified in Blob Body Content Type.
Refer to Handling Blobs in the REST Interface for a deeper explanation and some examples.


true
  • Reject to perform adapter call if the header "content-type" does not match the values listed in Blob Body Content Type (default).
  • Exception: RESTLM/48: Request content type not declared as accepted by the service
falsePerform the adapter call in spite of content-type header mismatch, and let the service handle this.
Accepted Request Content Types
(acceptedRequestContentType)

Provide a list of content types this REST endpoint accepts. This must be a list of valid Accept headers as defined in RFC 7231.
Refer to Handling Blobs in the REST Interface for a deeper explanation and some examples.

Info

This attribute must be left unset if no Blob output parameters are used. In future versions, the effect of this attribute may be extended to other contexts as well.

a list of valid media rangese.g. application/xhtml+xml
Default is application/octet-stream if not specified.
Reject Other Request Content Types
(rejectOtherRequestContentTypes)

Specify whether to return an error on requests with a content type that does not conform with the content types specified in Accepted Request Content Type.
Refer to Handling Blobs in the REST Interface for a deeper explanation and some examples.

true
  • Reject to perform adapter call if the header "accept" does not match the values

    listed in Accepted Request Content Type (default).

  • Exception: Set "accept" header does not accept any of declared response content types
falsePerform the adapter call in spite of accept header mismatch and let the service handle this.

Anchor
rest_parameter
rest_parameter
REST Parameter

Stereotype REST Parameter is used on a REST method parameter to mark it as REST parameter. Refer to REST Parameters to for more details and some examples.

Multiexcerpt
MultiExcerptNameRESTParameter
Tagged ValueDescriptionAllowed ValuesAllowed REST MethodsAllowed TypesHints and Limitations
In
(in)
Defines how the parameter will be passed to the REST method. This tag is mandatory.queryvia a query stringallall simple types and Array of simple typeUnknown parameters will be ignored, known will be passed to the method after being URL-decoded.
pathvia the REST resource pathallInteger, Float, String, Boolean, DateTimePath parameters are all required. All path parameters must be consumed by the called method and the parameter names must be the same as the path segment identifiers (without colon).
bodyvia the REST call bodyPOST, PUT, PATCHa complex type and ArrayA REST method can have only one body parameter.
headervia the REST call headerallall simple types and Array of simple typeUnknown parameters will be ignored, known will be passed to the method.
External Name
(externalName)
Defines an external name for the REST parameterany stringUse this, when wanting to access a REST service that has parameter names with special characters. In this case, set this name (e.g. ugly@parameter-name) to externalName and give a better name. So you will not have to escape the parameter every time you use it.

REST Error

Multiexcerpt
MultiExcerptNameRESTError

Stereotype REST Error is used on a class to mark it as REST error class. Assign such a class to the REST port (see REST Port) and this class will be used as output in case of error. Each REST port can have its separate error class.
You can report errors back to the caller using something like:

Code Block
local response = getRestHttpResponse();
response.responseObject = <my error object>;
response.httpStatus = <a matching http error code>;

...