yeamy.restlite.addition.NotModifiedResponse 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.addition;
import java.io.IOException;
import jakarta.servlet.http.HttpServletResponse;
import yeamy.restlite.HttpResponse;
public class NotModifiedResponse implements HttpResponse {
@Override
public void write(HttpServletResponse resp) throws IOException {
resp.setStatus(304);
}
}