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

org.hertsstack.http.HertsHttpInterceptor Maven / Gradle / Ivy

There is a newer version: 1.1.4
Show newest version
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