org.hertsstack.http.HertsHttpInterceptor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of herts-http Show documentation
Show all versions of herts-http Show documentation
Herts real time framework for Http
package org.hertsstack.http;
/**
* Herts http server interceptor
*
* @author Herts Contributer
* @version 1.0.0
*/
public interface HertsHttpInterceptor {
/**
* Before handle intercept
*
* @param request Herts Request class
*/
void beforeHandle(HertsHttpRequest request);
/**
* After handle intercept
*
* @param response Herts Response class
*/
void afterHandle(HertsHttpResponse response);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy