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

net.eusashead.parquet.http.handler.PatchRequestHandler Maven / Gradle / Ivy

The newest version!
package net.eusashead.parquet.http.handler;

import org.vertx.java.core.Handler;

import net.eusashead.parquet.http.request.PatchRequest;
import net.eusashead.parquet.http.response.ResponseException;

public interface PatchRequestHandler extends RequestHandler {
	
	void handle(PatchRequest request, Handler next) throws ResponseException;

}