com.jdcloud.function.HttpRequestHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-runtime Show documentation
Show all versions of java-runtime Show documentation
JDCLOUD Function Service SDK
The newest version!
package com.jdcloud.function;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;
public interface HttpRequestHandler {
void handleRequest(HttpServletRequest request, HttpServletResponse response, Context context) throws IOException, ServletException;
}