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

com.rbkmoney.woody.api.interceptor.RequestInterceptor Maven / Gradle / Ivy

There is a newer version: 1.1.23
Show newest version
package com.rbkmoney.woody.api.interceptor;

import com.rbkmoney.woody.api.trace.TraceData;

public interface RequestInterceptor extends Interceptor {
    /**
     * @return true - if request is successfully intercepted and ready for further processing; false - if interception failed and processing must be switched to request err handling
     */
    default boolean interceptRequest(TraceData traceData, Object providerContext, Object... contextParams) {
        return intercept(traceData, providerContext, contextParams);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy