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

com.github.dadiyang.httpinvoker.requestor.RequestPreprocessor Maven / Gradle / Ivy

There is a newer version: 1.2.4
Show newest version
package com.github.dadiyang.httpinvoker.requestor;

/**
 * pre-process request before send it.
 * 

* we can modify headers, cookies, params or even url of the request before actually send it. * * @author dadiyang * date 2019/1/9 */ public interface RequestPreprocessor { /** * Pre-processing the request * * @param request the request to send */ void process(HttpRequest request); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy