yeamy.restlite.HttpResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of restlite-core Show documentation
Show all versions of restlite-core Show documentation
Helps you with RESTful style servlet developments.
The newest version!
package yeamy.restlite;
import yeamy.restlite.addition.*;
import java.io.IOException;
import jakarta.servlet.http.HttpServletResponse;
/**
* @see Forward
* @see Redirect
* @see NotModifiedResponse
* @see VoidResponse
* @see AbstractHttpResponse
*/
public interface HttpResponse {
void write(HttpServletResponse resp) throws IOException;
}