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

yeamy.restlite.addition.NotModifiedResponse Maven / Gradle / Ivy

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);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy