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

net.sf.javaprinciples.resource.servlet.RequestHandler Maven / Gradle / Ivy

There is a newer version: 3.0.3
Show newest version
package net.sf.javaprinciples.resource.servlet;

import javax.servlet.http.HttpServletRequest;

import net.sf.javaprinciples.resource.ResourceException;

/**
 * Handler for individual HTTP methods.
 *
 * @param 
 * @author Luka Kruscic
 */
public interface RequestHandler
{
    void handleRequest(ResourceModel model, HttpServletRequest request) throws ResourceException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy