All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.restheart.plugins.InterceptPoint Maven / Gradle / Ivy

There is a newer version: 8.1.4
Show newest version
/*-
 * ========================LICENSE_START=================================
 * restheart-commons
 * %%
 * Copyright (C) 2019 - 2024 SoftInstigate
 * %%
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * =========================LICENSE_END==================================
 */
package org.restheart.plugins;

/**
 * Defines the intercept point of an Interceptor
 *
 * @author Andrea Di Cesare {@literal }
 */
public enum InterceptPoint {
   /**
     * Intercepts the request before the exchange is initialized.
     *
     * 

Interceptors on {@code InterceptPoint.REQUEST_BEFORE_EXCHANGE_INIT} * must implement the interface {@code WildcardInterceptor}; in this case, * {@code Interceptor.handle(request, response)} receives the request as * {@code UninitializedRequest} and the response as {@code UninitializedResponse}. * *

Interceptors can provide a custom initializer with * {@code PluginUtils.attachCustomRequestInitializer()} or can modify the raw * request content using {@code Request.setRawContent()}. */ REQUEST_BEFORE_EXCHANGE_INIT, /** * intercept the request before authentication occurs */ REQUEST_BEFORE_AUTH, /** * intercept the request after authentication occurs */ REQUEST_AFTER_AUTH, /** * intercept the response and executes blocking the response */ RESPONSE, /** * intercept the response and executes asynchronously with the response */ RESPONSE_ASYNC, /** * ANY can be used exclusively in the dontIntercept attribute of the * @RegisterPlugin annotation. dontIntercept=ANY specifies that the service should not be * intercepted at any intercept point by standard interceptors. * * Setting interceptPoint=ANY results in IllegalArgumentException * * Note: Interceptors with requiredInterceptor=true will * still intercept requests handled by the service, regardless of this * setting. */ ANY }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy