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

net.shmin.auth.handler.IRequestHandler Maven / Gradle / Ivy

There is a newer version: 2.3.1-RELEASE
Show newest version
package net.shmin.auth.handler;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

/**
 * Created by benjamin on 9/11/14.
 */
public interface IRequestHandler {
    /**
     * handle
     *
     * @param request
     * @param response
     */
    boolean handleRequest(HttpServletRequest request, HttpServletResponse response) throws Exception;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy