This is an automated email from the ASF dual-hosted git repository. lukaszlenart pushed a commit to branch csp-interceptor in repository https://gitbox.apache.org/repos/asf/struts-site.git
The following commit(s) were added to refs/heads/csp-interceptor by this push: new 8b2b20331 Uses full names of interceptors 8b2b20331 is described below commit 8b2b2033132d83b6dacfc75f86eb20727890a64e Author: Lukasz Lenart <lukaszlen...@apache.org> AuthorDate: Mon Nov 28 15:38:20 2022 +0100 Uses full names of interceptors --- source/core-developers/interceptors.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/core-developers/interceptors.md b/source/core-developers/interceptors.md index 8d041c12a..0d3f6a66e 100644 --- a/source/core-developers/interceptors.md +++ b/source/core-developers/interceptors.md @@ -113,11 +113,11 @@ specified in the `<interceptors/>` tag. | [Annotation Workflow Interceptor](annotation-workflow-interceptor) | annotationWorkflow | Invokes any annotated methods on the action. | | [Chaining Interceptor](chaining-interceptor) | chain | Makes the previous Action's properties available to the current Action. Commonly used together with <result type="chain"> (in the previous Action). | | [Checckbox Interceptor](checkbox-interceptor) | checkbox | Adds automatic checkbox handling code that detect an unchecked checkbox and add it as a parameter with a default (usually 'false') value. Uses a specially named hidden field to detect unsubmitted checkboxes. The default unchecked value is overridable for non-boolean value'd checkboxes. | -| [COEP Interceptor](coep-interceptor) | coep | Implements the Cross-Origin Embedder Policy on incoming requests used to protect a document from loading any non-same-origin resources which don't explicitly grant the document permission to be loaded. | +| [Cross-Origin Embedder Policy Interceptor](coep-interceptor) | coep | Implements the Cross-Origin Embedder Policy on incoming requests used to protect a document from loading any non-same-origin resources which don't explicitly grant the document permission to be loaded. | | [Conversion Error Interceptor](conversion-error-interceptor) | conversionError | Adds conversion errors from the ActionContext to the Action's field errors | | [Cookie Interceptor](cookie-interceptor) | cookie | Inject cookie with a certain configurable name / value into action. (Since 2.0.7.) | | [Cookie Provider Interceptor](cookie-provider-interceptor) | cookieProvider | Transfer cookies from action to response (Since 2.3.15.) | -| [COOP Interceptor](coop-interceptor) | coop | Implements the Cross-Origin Opener Policy on incoming requests used to isolate resources against side-channel attacks and information leaks. | +| [Cross-Origin Opener Policy Interceptor](coop-interceptor) | coop | Implements the Cross-Origin Opener Policy on incoming requests used to isolate resources against side-channel attacks and information leaks. | | [Create Session Interceptor](create-session-interceptor) | createSession | Create an HttpSession automatically, useful with certain Interceptors that require a HttpSession to work properly (like the TokenInterceptor) | | [Clear Session Interceptor](clear-session-interceptor) | clearSession | This interceptor clears the HttpSession. | | [Content Security Policy Interceptor](csp-interceptor) | csp | Adds support for Content Security policy. |