Skip to content

Commit

Permalink
Merge pull request wildfly#17780 from soul2zimate/WFLY-19190-main
Browse files Browse the repository at this point in the history
[WFLY-19190] Update the jaxrs subsystem resource descriptions to be more useful.
  • Loading branch information
bstansberry authored May 15, 2024
2 parents d266606 + 1754d22 commit 55ce78f
Showing 1 changed file with 21 additions and 21 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,31 +35,31 @@ jaxrs.deployment.sub-resource-locators.produces=Produce types of the Jakarta RES
jaxrs.deployment.sub-resource-locators.java-method=Java method of the Jakarta RESTful Web Services resource.
jaxrs.deployment.sub-resource-locators.resource-methods=Annotated methods for the Jakarta RESTful Web Services resource.

jaxrs.jaxrs-2-0-request-matching=jaxrs.2.0.request.matching configuration parameter
jaxrs.resteasy-add-charset=resteasy.add.charset configuration parameter
jaxrs.resteasy-buffer-exception-entity=resteasy.buffer.exception.entity configuration parameter
jaxrs.resteasy-disable-html-sanitizer=resteasy.disable.html.sanitizer configuration parameter
jaxrs.resteasy-disable-providers=resteasy.disable.providers configuration parameter
jaxrs.resteasy-document-expand-entity-references=resteasy.document.expand.entity.references configuration parameter
jaxrs.jaxrs-2-0-request-matching=In searching for a matching resource method with which to respond to a request, consider only resource methods with the best match for the request path.
jaxrs.resteasy-add-charset=If a resource method returns a text/* or application/xml* media type without an explicit charset, RESTEasy will add "charset=UTF-8" to the returned Content-Type header. Note that the charset defaults to UTF-8 in this case, independent of the setting of this parameter.
jaxrs.resteasy-buffer-exception-entity=Upon receiving an exception, the client side buffers any response entity before closing the connection.
jaxrs.resteasy-disable-html-sanitizer=Normally, a response with media type "text/html" and a status of 400 will be processed so that the characters "/", "<", ">", "&", """ (double quote), and "'" (single quote) are escaped to prevent an XSS attack. Setting this parameter to "true", escaping will not occur.
jaxrs.resteasy-disable-providers=A comma delimited list of fully qualified provider class names that will be disabled.
jaxrs.resteasy-document-expand-entity-references=Expand external entities in org.w3c.dom.Document documents and Jakarta XML Binding object representations.
jaxrs.resteasy-document-expand-entity-references.deprecated=This JAXP feature does not behave the same in all JAXP \
implementations and is therefore deprecated.
jaxrs.resteasy-document-secure-disableDTDs=resteasy.document.secure.disableDTDs configuration parameter
jaxrs.resteasy-document-secure-disableDTDs=Prohibit DTDs in org.w3c.dom.Document documents and Jakarta XML Binding object representations.
jaxrs.resteasy-document-secure-disableDTDs.deprecated=This JAXP feature does not behave the same in all JAXP \
implementations and is therefore deprecated.
jaxrs.resteasy-document-secure-processing-feature=resteasy.document.secure.processing.feature configuration parameter
jaxrs.resteasy-gzip-max-input=resteasy.gzip.max.input configuration parameter
jaxrs.resteasy-jndi-resources=resteasy.jndi.resources configuration parameter
jaxrs.resteasy-language-mappings=resteasy.language.mappings configuration parameter
jaxrs.resteasy-media-type-mappings=resteasy.media.type.mappings configuration parameter
jaxrs.resteasy-media-type-param-mapping=resteasy.media.type.param.mapping configuration parameter
jaxrs.resteasy-prefer-jackson-over-jsonb=resteasy.prefer-jackson-over-jsonb configuration parameter
jaxrs.resteasy-providers=resteasy.providers configuration parameter
jaxrs.resteasy-rfc7232preconditions=resteasy.rfc7232preconditions configuration parameter
jaxrs.resteasy-role-based-security=resteasy.role.based.security configuration parameter
jaxrs.resteasy-secure-random-max-use=resteasy.secure.random.max.use configuration parameter
jaxrs.resteasy-use-builtin-providers=resteasy.use.builtin.providers configuration parameter
jaxrs.resteasy-use-container-form-params=resteasy.use.container.form.params configuration parameter
jaxrs.resteasy-wider-request-matching=resteasy.wider.request.matching configuration parameter
jaxrs.resteasy-document-secure-processing-feature=Impose security constraints in processing org.w3c.dom.Document documents and Jakarta XML Binding object representations.
jaxrs.resteasy-gzip-max-input=Imposes maximum size on decompressed gzipped.
jaxrs.resteasy-jndi-resources=A comma delimited list of JNDI names which reference objects to be registered as Jakarta RESTful Web Services resources.
jaxrs.resteasy-language-mappings=Replaces the need for an Accept-Language header by mapping file name extensions (like .en or .fr) to a language. Used when the client is unable to use an Accept-Language header to choose a language (i.e. a browser).
jaxrs.resteasy-media-type-mappings=Replaces the need for an Accept header by mapping file name extensions (like .xml or .txt) to a media type. Used when the client is unable to use an Accept header to choose a representation (i.e. a browser).
jaxrs.resteasy-media-type-param-mapping=Names a query parameter that can be set to an acceptable media type, enabling content negotiation without an Accept header.
jaxrs.resteasy-prefer-jackson-over-jsonb=Specifies that the Jackson JSON provider should be preferred over the default Jakarta JSON Processing provider for JSON binding.
jaxrs.resteasy-providers=A comma delimited list of fully qualified @Provider class names you want to register.
jaxrs.resteasy-rfc7232preconditions=Enables RFC7232 compliant HTTP preconditions handling.
jaxrs.resteasy-role-based-security=Enables role based security.
jaxrs.resteasy-secure-random-max-use=The number of times a SecureRandom can be used before reseeding.
jaxrs.resteasy-use-builtin-providers=Whether or not to register default, built-in @Provider classes.
jaxrs.resteasy-use-container-form-params=HttpServletRequest.getParameterMap(). Use this switch if you are calling this method within a servlet filter or consuming the input stream within the filter.
jaxrs.resteasy-wider-request-matching=Turns off the Jakarta RESTful Web Services spec defined class-level expression filtering and instead tries to match every method's full path.
jaxrs.tracing-type="ALL" will enable the tracing feature. "ON_DEMAND" mode will give control to the client side: A \
client can send a tracing request via HTTP header and get the tracing info back from response headers. "OFF" mode \
will disable the tracing feature, and this is the default mode. Note that it is suggested this is set to "OFF" \
Expand Down

0 comments on commit 55ce78f

Please sign in to comment.